Skip to content

Instantly share code, notes, and snippets.

@zgurya
Created January 11, 2017 23:08
Show Gist options
  • Save zgurya/c2675b03215a677e1a3943a3cfa86ec9 to your computer and use it in GitHub Desktop.
Save zgurya/c2675b03215a677e1a3943a3cfa86ec9 to your computer and use it in GitHub Desktop.
WordPress .htaccess file with feactures
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yoursite.com/$1 [R,L]
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{SERVER_NAME}/$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