I have the following in a .htaccess 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]
</IfModule>
# END WordPress
I have tried the following but it does not work:
RewriteRule ^this-url$ http://www.anotherdomain.com/ [NC,L,R=301]
Any idea how I can resolve this?
Regards,
Neil.