Skip to content

Instantly share code, notes, and snippets.

@BruceMcKinnon
Last active February 15, 2022 22:03
Show Gist options
  • Save BruceMcKinnon/0cacf0a9a732a0d8782fe9edcf643030 to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/0cacf0a9a732a0d8782fe9edcf643030 to your computer and use it in GitHub Desktop.
htaccess auto redirect to SSL connection
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#RewriteCond %{SERVER_PORT} 80
#RewriteRule ^(.*)$ https://domain.com/$1 [R,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css "access plus 5 minutes"
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment