XF 1.5 Redirect Help

countryside

Active member
Hello,
I am moving my site from ConservativeUnderground.io to LibertyUnderground.org, is there anything I need know in advance and what will I need to do to get it to redirect old thread links to the same one on the new URL?

Thanks,
Noah
 
Are both domains parked on the same server or different servers? Your domain pointers are the first thing to check. Then look for redirects on whichever server is being accessed.

Use these rules at the top of the .htaccess file in the web root of ConservativeUnderground.io to redirect to the new domain:

Code:
RewriteEngine On

RewriteRule ^(.*)$ http://LibertyUnderground.org/$1 [R=301,L]
 
Top Bottom