Skip to content

Instantly share code, notes, and snippets.

@Edwardtonnn
Created December 10, 2018 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Edwardtonnn/6aecc960e359e54b31ab866966b265ee to your computer and use it in GitHub Desktop.
Save Edwardtonnn/6aecc960e359e54b31ab866966b265ee to your computer and use it in GitHub Desktop.
Force SSL on all pages
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
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