Skip to content

Instantly share code, notes, and snippets.

@zgurya
Created February 5, 2018 23:17
Show Gist options
  • Save zgurya/56efa72885d8002d51decf45dededea8 to your computer and use it in GitHub Desktop.
Save zgurya/56efa72885d8002d51decf45dededea8 to your computer and use it in GitHub Desktop.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://domain.nane/$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