diff options
author | Teddy Wing | 2018-11-20 02:19:35 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-20 02:19:35 +0100 |
commit | 995b2b508b5647b4b768f4d8b11ef3697af2393b (patch) | |
tree | 3e47b39dd2f6498bfed9a15a9894d0f0255d18d3 | |
parent | 1db7ad0581e7b51c472e03899c367ed61d24744c (diff) | |
download | dome-key-web-995b2b508b5647b4b768f4d8b11ef3697af2393b.tar.bz2 |
.htaccess: Fix HTTPS redirect
This line was causing a server error. Happily, the corrected version
looks even nicer.
-rw-r--r-- | .htaccess | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ ErrorDocument 404 /404.html RewriteEngine on # Redirect HTTP to HTTPS -RewriteCond %{HTTPS} != on +RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # Disallow access to .htaccess |