OK, my main site page used to be www.site.com/phpportal/ but I have recently moved it to www.site.com/
The problem is the page rank for the phpportal was a 4 and the root was only a 3. Is there any way to get the 4 to transfer to the root?
This is a discussion on is it possible... within the General Discussion forums, part of the vBSEO SEO Plugin category; OK, my main site page used to be www.site.com/phpportal/ but I have recently moved it to www.site.com/ The problem is ...
OK, my main site page used to be www.site.com/phpportal/ but I have recently moved it to www.site.com/
The problem is the page rank for the phpportal was a 4 and the root was only a 3. Is there any way to get the 4 to transfer to the root?
Hello Jeremy,
you cannot transfer your PR directly from one URL to another, but you can setup a google-safe redirection to let googlebot know that your content has been moved to new location and update it's index faster.
You should add the following to the root .htaccess file for this right after "RewriteEngine on" line:
Code:RewriteRule phpportal/(.*) $1 [L,R=301]
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Oh awesome, thanks much!