From 5f025ac2c2a472ff69425f0773cd22a23cdc80bf Mon Sep 17 00:00:00 2001 From: Lukas Bestle Date: Mon, 15 Jun 2020 20:01:18 +0200 Subject: [PATCH] Minor fixes to .htaccess --- .htaccess | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.htaccess b/.htaccess index f1caf43..370133c 100644 --- a/.htaccess +++ b/.htaccess @@ -1,4 +1,5 @@ # Kirby .htaccess +# revision 2020-06-15 # rewrite rules @@ -8,11 +9,11 @@ RewriteEngine on # make sure to set the RewriteBase correctly -# if you are running the site in a subfolder. -# Otherwise links or the entire site will break. +# if you are running the site in a subfolder; +# otherwise links or the entire site will break. # -# If your homepage is http://yourdomain.com/mysite -# Set the RewriteBase to: +# If your homepage is http://yourdomain.com/mysite, +# set the RewriteBase to: # # RewriteBase /mysite @@ -29,13 +30,9 @@ RewriteRule (^|/)\.(?!well-known\/) index.php [L] RewriteRule ^content/(.*) index.php [L] # block all files in the site folder from being accessed directly -# except for requests to plugin assets files RewriteRule ^site/(.*) index.php [L] -# Enable authentication header -SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 - -# block direct access to kirby and the panel sources +# block direct access to Kirby and the Panel sources RewriteRule ^kirby/(.*) index.php [L] # make site links work @@ -45,6 +42,9 @@ RewriteRule ^(.*) index.php [L] +# pass the Authorization header to PHP +SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 + # compress text file responses AddOutputFilterByType DEFLATE text/plain