Posts: 876
Name: Matt Pealing
Location: England, north west
|
So far I have this code:
Code:
RewriteCond %{HTTP_HOST} ^(www\.)?myolddomain\.co.uk$ [NC]
RewriteRule .* http://www.mynewdomain.co.uk%{REQUEST_URI} [R=301,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
But I need to make another addition and am unsure about how to update the file without breaking what's already there!
Basically I need to repoint a subfolder like so:
Code:
http://www.myolddomain.co.uk/subFolder
Redirects to
Code:
http://www.someotherdomain.com
If anybody has any ideas that would be great 
|