Hi All I have a problem oF google cache in my website my site open in browesr with default url http://nqaqsr.us and all the pages of my site are cached with www prefix. To resolve this problem can i use 301 redirection without www url to with www url in all the pages . pls provide me the redirection code for my site or at domin level i set the redirection without www url to with www url. Which method is best for redirection OR Is there any other way to resolve this problem pls tell me
Options +FollowSymlinks RewriteEngine on RewriteCond %{HTTP_HOST} ^nqaqsr.us$ RewriteRule ^(.*) http://www.nqaqsr.us/$1 [QSA,L,R=301] Code (markup): This redirects nqaqsr.us to www.nqaqsr.us. Jean-Luc