Skip to content

Instantly share code, notes, and snippets.

@geeac
Created April 8, 2020 07:54
Show Gist options
  • Save geeac/955ded1fdabf3392b6b593f11fce2ea6 to your computer and use it in GitHub Desktop.
Save geeac/955ded1fdabf3392b6b593f11fce2ea6 to your computer and use it in GitHub Desktop.
domain change
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS_HOST} !^newdomain\.com$ [NC]
RewriteRule ^(.*)$ https://newdomain.com/$1 [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment