Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created July 10, 2022 08:53
Show Gist options
  • Select an option

  • Save wpflames/cb77be7581e430b7b8c72406b9149a75 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/cb77be7581e430b7b8c72406b9149a75 to your computer and use it in GitHub Desktop.
Redirect Domain Without Changing URL
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