I use self hosted wordpress and wish to redirect visitors from fashionbeautyetc.com to corresponding page/post on fayekent.co.uk. I wish to exclude the redirect being applied to images and the WP dashboard (wp-admin) what code should I place in htaccess
the code already in there is below:
SuPHP_ConfigPath /var/sites/f/fashionbeautyetc.com/public_html
# 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
Add this before
# BEGIN WordPress
: