Quote:
Originally Posted by jwoodman
Are you saying to use site: jeffsstorepackage.com
jeff
|
Yes. Without the space
Quote:
Originally Posted by jwoodman
Someone else mentioned that before but i couldn't figure it out.
jeff
|
I believe it's being caused by the redirect that's in place. Both the www and the non www version of the URL redirect to the /index.php URL so anyone who enters your site from either of those URL's, and tries to "go back" is getting redirected back to your site.
There's a meta refresh doing it...
<META HTTP-EQUIV="Refresh" CONTENT="0; URL=index.php">
The redirects should be in your .htaccess file (apache server). Select one canonical version of your URL and redirect (using a 301) the others to the one you select. Since Google is showing the www version in the index it might be wise to stick with that one as your preferred URL.
Here's some help with the redirects...
Canonicalization Prevention Guide
Dave