Need to redirect content from old domain to new domain
-
Hi,
I transferred my site from clredcontent.com to coloredcontent.com but now all my old links wont work. I have a godaddy site and tried to redirect the content in my htaccess file but it hasn’t seemed to work. I dont want to lose my permalink access either so I am afraid to lose the code already included.
Could anyone help? Here is the code I currently have in the file:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] RewriteCond %{HTTP_HOST} ^clredcontent.com$ [OR] RewriteCond %{HTTP_HOST} ^www.clredcontent.com$ RewriteRule (.*)$ https://www.coloredcontent.com/$1 [R=301,L] </IfModule> # END WordPress
- The topic ‘Need to redirect content from old domain to new domain’ is closed to new replies.