My website www.xyz.co.uk. this website in some old link www.abc.co.uk/xxx i need to user click on any old link then redirect www.xyz.co.uk page. i try htaccess rule write but not working.
# Redirect to xyz.co.uk
<IfModule mod_rewrite.c>
# For security reasons, Option followsymlinks cannot be overridden.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^abc.co.uk [OR]
RewriteCond %{HTTP_HOST} ^www.abc.co.uk [NC]
RewriteRule ^(.*)$ http://www.xyz.co.uk/$1 [L,R=301]
</IfModule>
# Redirect to xyz.co.uk end