vBulletin Search Engine Optimization
This is a discussion on Is it possible for vBSEO to help with this? within the General Discussion forums, part of the vBSEO SEO Plugin category; Hi all Here's the scenario, we want to buy from someone, Website A currently on Domain A, transfer and then ...
| |||||||
Enhancing 80 million pages. | Register | FAQ | Members List | Social Groups | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| |||
| |||
| Is it possible for vBSEO to help with this?
Hi all Here's the scenario, we want to buy from someone, Website A currently on Domain A, transfer and then setup a fresh Domain B, copy the database from Website A, to Website B, then install vBSEO on Website B, and then redirect any requests to Website A, to the relevant forum posts on Website B? Bit of a mouthful, but hopefully you know what I mean. |
|
#2
| ||||
| ||||
|
Yes - if you move the database from A to B and re-active the forum with vBSEO, you can add a custom htaccess redirect on the old domain to redirect all traffic (via 301) to the new one.
__________________ Joe Ward / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. |
|
#3
| |||
| |||
|
What would the redirect be that we would need Joe?
|
|
#4
| ||||
| ||||
|
This will work for you: 301 Redirect from Domain Folder to Domain Add it on Site A. Change the URL to the domain for site B.
__________________ Joe Ward / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. |
|
#5
| |||
| |||
|
Cheers Joe.
|
|
#6
| |||
| |||
|
Just if anyone else needs this on a windows server: Code: RewriteEngine on #Permanent redirect to update old links RewriteRule (.+) http://www.yourdomain.net/$1 [R=301,L] |