tags:

views:

72

answers:

3

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?

+3  A: 

try something like

"html rearrange -inurl:html"

the inurl means "match the following pattern in the URL", the - means to exclude those pages

Matt
+1  A: 

-inurl:(htm|html) "search term"

Good luck!

Ian P
+1  A: 

Thanks for the answers - I didn't know about "inurl" - very useful indeed.

I poked about in google and found the list of operators that can be used: http://www.google.com/help/operators.html.

There are some other ones in there I might find useful too.

benefactual