Restricting a search to multiple sites - is it possible to do this?
E.g. site:www.google+www.yahoo.com?
Restricting a search to multiple sites - is it possible to do this?
E.g. site:www.google+www.yahoo.com?
Bing does not provide a separate method of specifying which sites to search like Google's annotations. Instead, you need to add them as parameters in your query string. To do so, use the OR logical operator along with the site: specification. Bing prioritizes AND over OR, so make sure you put parentheses around the OR'ed terms. For example,
example search terms (site:google.com OR site:yahoo.com)
If you are adding a lot of sites, keep in mind that the total URL length must be less than 2048 characters, encoded.
Use OR
operator and site:
keyword.
E.g.
(site:http://superuser.com/ OR site:http://stackoverflow.com/) (some query)
It should work in most of the search engines such as Google, Bing, Yahoo, DuckDuckGo, etc.
Note: It's important to use capital letters for operators such as
AND
andOR
, otherwise it could not work.
Format your query like this:
site:dell.com OR site:ibm.com "search phrase"
So each site/domain with OR
between. Tested seems to work for both Bing and Google.
Syntax shamelessly taken from searchenginewatch.com.