I want to redirect
http://abc.one.com/mysettings/marks
to
https://xyz.two.com/mysettings/marks
I added below lines htaccess file but it doesn't seem to work. Please let me know where am I going wrong.
RewriteCond %{HTTP_HOST} ^http://abc.one.com/mysettings/marks [NC]
RewriteRule ^(.*)$ https://xyz.two.com/mysettings/marks [L,R=301]
You can use;
RewriteCond %{HTTP_HOST} ^abc\.one\.com$ [NC]
RewriteRule ^mysettings/marks/?$ https://xyz.two.com/mysettings/marks [L,R=301]
Don't use URI in HTTP_HOST
condition.
Also use 301 redirect method. Because Redirect 301 /old-page.html http://www.example.com/new-page.html