1
0
Fork 0

Update .htaccess

master
Lukas Bestle 6 years ago
parent b8f5417827
commit bdab17ffcd
Signed by: lukas
GPG Key ID: 692037D104550FC9

@ -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
@ -38,17 +39,13 @@ RewriteRule ^$ /yadis.xrds [PT]
# except for the .well-known folder, which is used for Let's Encrypt and security.txt # except for the .well-known folder, which is used for Let's Encrypt and security.txt
RewriteRule (^|/)\.(?!well-known\/) index.php [L] RewriteRule (^|/)\.(?!well-known\/) index.php [L]
# block text files in the content folder from being accessed directly # block all files in the content folder from being accessed directly
RewriteRule ^content/(.*)\.(txt|md|mdown)$ 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
@ -58,6 +55,9 @@ RewriteRule ^(.*) index.php [L]
</IfModule> </IfModule>
# Enable authentication header
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
# MIME types # MIME types
<IfModule mod_mime.c> <IfModule mod_mime.c>
AddType application/pgp-keys asc AddType application/pgp-keys asc

Loading…
Cancel
Save