X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/b9ba9d127c9b53822ccd217093818467a66f0260..2f80fb27bdfa2a66851d44ac6c66a64a3b82c97d:/.htaccess diff --git a/.htaccess b/.htaccess index f9d21dd..f6a07f7 100644 --- a/.htaccess +++ b/.htaccess @@ -13,6 +13,11 @@ RewriteRule ^(vi(?=m$)|.*) http://sheet.shiar.nl/$1 [R=301] RewriteRule ^vim$ /vi [R=301] RewriteRule ^cc$ /countries [R=301] +# forward to https protocol if requested +RewriteCond %{HTTPS} =off +RewriteCond %{HTTP:Upgrade-Insecure-Requests} =1 +RewriteRule (.*) https://%{HTTP_HOST}/$1 [L] + # serve vim commands when requesting /digraphs.ex as well RewriteRule ^(digraphs)\.ex(/.*)?$ $1.vim$2 @@ -21,6 +26,11 @@ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{DOCUMENT_ROOT}/$1.plp -f RewriteRule ^/*([^/]+)(.*) $1.plp$2 +# replace jpeg images by webp alternatives if supported +RewriteCond %{HTTP_ACCEPT} \bimage/webp +RewriteCond %{DOCUMENT_ROOT}/$1.webp -f +RewriteRule (.*)\.jpg$ $1.webp + # allow browsers to cache for upto a month