Add a url rewrite to your .htaacess file to rewrite http to www Google can see two versions of your site. http://adminaddict.com/forum/ http://www.adminaddict.com/forum/ This can also cause people to have to log in a second time.
Thanks for the suggestion, Kevin. We actually do have this in place for the root domain. When you visit adminaddict.com, it redirects to the www version. But it doesn't work when you visit adminaddict.com/forum. This is what is currently in the .htaccess file: Code: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.adminaddict\.com [NC] RewriteRule (.*) http://www.adminaddict.com/$1 [R=301,L] Perhaps I just need to add: Code: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.adminaddict\.com\[B]forums [/B][NC] RewriteRule (.*) http://www.adminaddict.com/[B]forums/[/B]$1 [R=301,L] ?? Thanks!
You might have to add that to your htaacess file, but the settings in root file should go to the subfolders The AME modification has a problem with rewritting your sites url, that is why I asked.