Hello , google pr update gave my /index.php pr3 and my rest of the site remained pr1 , i got some info that using if i use 301 redirect on my /index.php to domain root then google will recalcute my pr. if its yes can anyone help me what i've to add in my .htaccess . also i've problem with google webmasters tool. my sitemap is showing 10,000 urls submitted through sitemap and only 101 urls were index. my site is http://www.aiostop.com/ - pr1 my index.php http://www.aiostop.com/index.php - pr3 Code (markup): thank you
Options +FollowSymlinks RewriteEngine On RewriteCond %{HTTP_HOST} !^(www\.|$) [NC] RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] Options +FollowSymLinks RewriteCond %{THE_REQUEST} ^.*/index.php RewriteRule ^(.*)index.php$ http://YOURSITENAME/$1 [R=301,L] Try to use above code this will work for giving 301 redirection non www pages to www and also index to root path. Hope this will help you.