Quote:
Originally Posted by innova
Thanks for the reply, much appreciated.
Seems to be the same on FF/Safari/Chrome/Mobile Safari. Strange it's only when I access it through example.com vs www.example.com. Not a coder by any means, but can't seem to find where it might be when going through it. Been trying to think of a workaround but no way to distinguish a user coming in on www vs nonWWW.
-innova
|
Just found a good workaround, and it keeps with SEO best practices as well, figured I'd share since too many people figure out their problems and don't post the fix.
Using .htaccess to redirect nonWWW to www.
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
Too many people figure out their problems and don't post the fix, so thanks again for the replies.
Source of fix
-innova