Discussion:
Google search adds .inf to our url
(too old to reply)
m***@sourceresearch.com
2013-01-25 13:46:53 UTC
Permalink
While doing a search in Google for a part we carry "KU-93026", the result list along with other sites who's links looked normal had our site with an extra .inf in the url.
http://www.inf.sourceresearch.com/Store1/quickstore.cfm?ProductID=23025&do=detail
instead of
http://www.sourceresearch.com/Store1/quickstore.cfm?ProductID=23025&do=detail

Has anybody seen that before? Why is it there?
1-script.com
2013-02-04 17:38:34 UTC
Permalink
responding to
http://www.1-script.com/forums/search-engines/google-search-adds-inf-to-our-url-86474-.htm
Post by m***@sourceresearch.com
While doing a search in Google for a part we carry "KU-93026",
the result list
along with other sites who's links looked normal had our site with an
extra .inf
in the url.
http://www.inf.sourceresearch.com/Store1/quickstore.cfm?ProductID=23025&do=detail
Post by m***@sourceresearch.com
instead of
http://www.sourceresearch.com/Store1/quickstore.cfm?ProductID=23025&do=detail
Has anybody seen that before? Why is it there?
They have been APpending stuff (including non-exising stuff) to URLs for
the longest time (various queries and parameters) but I've never seen them
PREpending subdomain names to an URL. I would venture a guess that you may
have had some sort of a test subdomain at some point perhaps? Check your
DNS records, you may see that www.inf. subdomain in there or you may also
see it in your Apache virtual hosts section.

Regardless of how it got there, why is it still resolving and returning
content on it? Do you still need it? If not, disable it in .htaccess in
the root Web directory for www.sourceresearch.com

Add this to the .htaccess:

RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.sourceresearch.com [NC]
RewriteRule ^(.*)$ http://www.sourceresearch.com/$1 [R=301,L]


Good luck!

Loading...