Answer the question
In order to leave comments, you need to log in
How to make a 301 redirect in htaccess from home to home?
Actually, there is such a redirect, from the url of a page of one domain to the url of the same page on another domain:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^oldsite\.com
RewriteRule ^(.*)$ https://newsite.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^www.oldsite\.com
RewriteRule ^(.*)$ https://newsite/$1 [R=301,L]
Answer the question
In order to leave comments, you need to log in
RewriteEngine On
RewriteCond %{HTTP_HOST} ^oldsite\.com
RewriteRule ^(.*)$ https://newsite.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^www\.oldsite\.com
RewriteRule ^(.*)$ https://newsite/$1 [R=301,L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question