Hello,
I would like to know if it is SEO safe to move my forum from www.mysite.com/forums to www.mysite.com,to the server root.Will vBSEO redirect my old URLs?If no,is there a safe way to do this?Thank you.
Regards
This is a discussion on Move forum within the General Discussion forums, part of the vBSEO SEO Plugin category; Hello, I would like to know if it is SEO safe to move my forum from www.mysite.com/forums to www.mysite.com,to the ...
Hello,
I would like to know if it is SEO safe to move my forum from www.mysite.com/forums to www.mysite.com,to the server root.Will vBSEO redirect my old URLs?If no,is there a safe way to do this?Thank you.
Regards
Well if you have the same rewrite structure, you can have a .htaccess file in your forums folder to rewrite all all of the URLs.
The Forum Hosting - Forum Hosting from the Forum Experts
How would I edit the htaccess?I have no knowledge of rewrites.
Please see here: [How to] Setup www.yourdomain.com or yourdomain.com (www vs. non-www) - With .htaccess 301 redirects
You would place this in your .htaccess that is located in your forum directory:
Code:RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.example\.com RewriteRule (.*) http://www.example.com/$1 [R=301,L]
The Forum Hosting - Forum Hosting from the Forum Experts
But I want to move the contents of the forums directory to site root,but leaving permanent redirects from the old pages to the new ones.So www.mysite.com/forums/index.php would redirect to www.mysite.com/index.php
You should put this .htaccess in forums/ folder then:
Code:RewriteEngine On RewriteRule (.*) http://www.example.com/$1 [R=301,L]
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!
So the content will be redirected with this code?And what about search engines?
KXDesign.com - Most Wanted vBulletin Modifications
The KX - Accelerator ~ Use this mod in conjunction with vBSEO to improve your SEO!
SE indexes will be updated with time as well.
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!