有没有办法阻止谷歌搜索词匹配网址?
目前,我正在进行一些包含“html”的搜索,例如“html rerange”。 不幸的是,我从在 .html 页面上包含“重新排列”但在页面本身中没有提及 html 的网站获得了很多点击。
有没有办法阻止搜索词匹配网址?
At the moment, I am doing a number of searches which include "html" in them, for example "html rearrange". Unfortunately, I get a lot of hits from sites that include "rearrange" on a .html page but have no mention of html in the page itself.
Is there a way to prevent search terms from matching urls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试类似
“html rerange -inurl:html”的
内容,inurl 表示“匹配 URL 中的以下模式”,- 表示排除这些页面
try something like
"html rearrange -inurl:html"
the inurl means "match the following pattern in the URL", the - means to exclude those pages
实际上,您应该使用
rearrange intext:html
,否则您将忽略所有以 .html 结尾的页面。例如,matt 将包含 www.somesite.com/rearrange.php,但不包含 www.somesite.org/better_result.html。
如果 www.somesite.org/better_result.html 是更好的结果,那么您可能会错过一些重要信息。
you should actually use
rearrange intext:html
, otherwise you omit all pages ending in .html.for example, the way matt will include www.somesite.com/rearrange.php but not www.somesite.org/better_result.html.
If www.somesite.org/better_result.html was a better result, then you might miss some important information.
-inurl:(htm|html)“搜索词”
祝你好运!
-inurl:(htm|html) "search term"
Good luck!