Adding a 301 to WordPress .htaccess
-
Hi,
I need to add in a 301 redirect to the standard WordPress .htaccess file as I moved my site from https://www.olddomain.com to https://www.newdomain.com.
This is my current .htaccess file located in /news/
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /news/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /news/index.php [L]
</IfModule># END WordPress
I’ve tried many things but none of them work, any ideas?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Adding a 301 to WordPress .htaccess’ is closed to new replies.