Skip to content

Instantly share code, notes, and snippets.

@BurlesonBrad
Created October 28, 2017 21:28
Show Gist options
  • Save BurlesonBrad/3cbdf1ca86b6b463dadac59ab7bfecb6 to your computer and use it in GitHub Desktop.
Save BurlesonBrad/3cbdf1ca86b6b463dadac59ab7bfecb6 to your computer and use it in GitHub Desktop.
for Bobby
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.vitalityscience\.com [NC]
RewriteRule ^(.*)$ http://vitalityscience.com/$1 [L,R=301]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment