MyBB Community Forums

Full Version: Redirect Old domain to New domain using htaccess 301 redirect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Redirect Old domain to New domain using htaccess 301 redirect

Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.

The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed) example: /public_html

Quote:Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.nadlerzforum.com/$1 [R=301,L]

REPLACE www.nadlerzforum.com in the above code with your actual domain name.

Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.

This is what im using in my old url's Big Grin
Original Thread