Minor fixes to .htaccess

This commit is contained in:
Lukas Bestle
2020-06-15 20:01:18 +02:00
committed by Bastian Allgeier
parent 61729df53a
commit 5f025ac2c2

View File

@@ -1,4 +1,5 @@
# Kirby .htaccess # Kirby .htaccess
# revision 2020-06-15
# rewrite rules # rewrite rules
<IfModule mod_rewrite.c> <IfModule mod_rewrite.c>
@@ -8,11 +9,11 @@
RewriteEngine on RewriteEngine on
# make sure to set the RewriteBase correctly # make sure to set the RewriteBase correctly
# if you are running the site in a subfolder. # if you are running the site in a subfolder;
# Otherwise links or the entire site will break. # otherwise links or the entire site will break.
# #
# If your homepage is http://yourdomain.com/mysite # If your homepage is http://yourdomain.com/mysite,
# Set the RewriteBase to: # set the RewriteBase to:
# #
# RewriteBase /mysite # RewriteBase /mysite
@@ -29,13 +30,9 @@ RewriteRule (^|/)\.(?!well-known\/) index.php [L]
RewriteRule ^content/(.*) index.php [L] RewriteRule ^content/(.*) index.php [L]
# block all files in the site folder from being accessed directly # block all files in the site folder from being accessed directly
# except for requests to plugin assets files
RewriteRule ^site/(.*) index.php [L] RewriteRule ^site/(.*) index.php [L]
# Enable authentication header # block direct access to Kirby and the Panel sources
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
# block direct access to kirby and the panel sources
RewriteRule ^kirby/(.*) index.php [L] RewriteRule ^kirby/(.*) index.php [L]
# make site links work # make site links work
@@ -45,6 +42,9 @@ RewriteRule ^(.*) index.php [L]
</IfModule> </IfModule>
# pass the Authorization header to PHP
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
# compress text file responses # compress text file responses
<IfModule mod_deflate.c> <IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/plain