Forum Moderators: open
However, after a few seconds research, what appears to be happening is that it is taking it into account as a '2 letter stopword' placeholder..
In other words,
"accommodation in london"
gives the same SERP as
accommodation at london
and
accommodation to london
but different from:
accommodation london
Maybe its the proximity effect.
Anyone got a better researched angle on this?
If you're interested in finding all possible iterations of a phrase, don't use a stop word. Instead use *; "three * mice" finds three blind mice, three green mice, etc. While the * cannot be used as a stem (you can't put it with a text string like moon*) you can use it as a full-word wildcard. Why does Google offer full-word wildcards and not stemming, like AltaVista does? No idea.
RBuz,
That is a nice tip about full-word wildcards *. I hadn’t seen that one before.