Created
July 10, 2022 08:53
-
-
Save wpflames/cb77be7581e430b7b8c72406b9149a75 to your computer and use it in GitHub Desktop.
Redirect Domain Without Changing URL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RewriteEngine on | |
| RewriteCond %{HTTP_HOST} ^OLDDOMAIN\.com$ [OR] | |
| RewriteCond %{HTTP_HOST} ^www\.OLDDOMAIN\.com$ | |
| RewriteRule ^(.*) "https\:\/\/NEWDOMAIN\.com\/$1" [R=301,L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment