2015-11-29 20:38:31 +01:00
|
|
|
# Kirby .htaccess
|
|
|
|
|
|
|
|
# rewrite rules
|
|
|
|
<IfModule mod_rewrite.c>
|
2019-01-25 13:45:36 +01:00
|
|
|
|
|
|
|
# enable awesome urls. i.e.:
|
|
|
|
# http://yourdomain.com/about-us/team
|
|
|
|
RewriteEngine on
|
|
|
|
|
|
|
|
RewriteCond %{HTTP_HOST} !^sterzy\.com$
|
|
|
|
RewriteRule (.*) https://sterzy.com/$1 [L,R=301]
|
|
|
|
|
|
|
|
RewriteCond %{HTTPS} !=on
|
|
|
|
|
|
|
|
# redirect all trafic to https
|
|
|
|
RewriteCond %{ENV:HTTPS} !=on
|
|
|
|
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
|
|
|
|
|
2019-02-20 18:38:14 +01:00
|
|
|
Redirect 301 /.well-known/carddav /cloud/remote.php/carddav
|
|
|
|
Redirect 301 /.well-known/caldav /cloud/remote.php/caldav
|
|
|
|
|
2019-01-25 13:45:36 +01:00
|
|
|
# block files and folders beginning with a dot, such as .git
|
|
|
|
# except for the .well-known folder, which is used for Let's Encrypt and security.txt
|
|
|
|
RewriteRule (^|/)\.(?!well-known\/) index.php [L]
|
|
|
|
|
|
|
|
# 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 your homepage is http://yourdomain.com/mysite
|
|
|
|
# Set the RewriteBase to:
|
|
|
|
#
|
|
|
|
# RewriteBase /mysite
|
|
|
|
|
|
|
|
# block text files in the content folder from being accessed directly
|
|
|
|
RewriteRule ^content/(.*)\.(txt|md|mdown)$ index.php [L]
|
|
|
|
|
|
|
|
# block all files in the site folder from being accessed directly
|
|
|
|
RewriteRule ^site/(.*) index.php [L]
|
|
|
|
|
|
|
|
# Enable authentication header
|
|
|
|
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
|
|
|
|
|
|
|
|
# block all files in the kirby folder from being accessed directly
|
|
|
|
RewriteRule ^kirby/(.*) index.php [L]
|
|
|
|
|
|
|
|
# make site links work
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteRule ^(.*) index.php [L]
|
|
|
|
|
2015-11-29 20:38:31 +01:00
|
|
|
</IfModule>
|
|
|
|
|
|
|
|
# Additional recommended values
|
|
|
|
# Remove comments for those you want to use.
|
|
|
|
#
|
|
|
|
# AddDefaultCharset UTF-8
|
|
|
|
#
|
2017-07-07 13:46:34 +02:00
|
|
|
# php_flag short_open_tag on
|
|
|
|
|
|
|
|
RequestHeader set X-Forwarded-Proto https
|
|
|
|
RequestHeader set X-Forwarded-Ssl on
|
2017-08-04 20:27:56 +02:00
|
|
|
|
|
|
|
# Enable caching of css and js
|
|
|
|
ExpiresActive On
|
|
|
|
|
|
|
|
ExpiresByType application/x-javascript M604800
|
|
|
|
ExpiresByType text/css M604800
|
2017-08-04 20:31:11 +02:00
|
|
|
ExpiresByType text/x-javascript M604800
|
2019-01-25 13:45:36 +01:00
|
|
|
|
|
|
|
# compress text file responses
|
|
|
|
<IfModule mod_deflate.c>
|
|
|
|
|
|
|
|
AddOutputFilterByType DEFLATE text/plain
|
|
|
|
AddOutputFilterByType DEFLATE text/html
|
|
|
|
AddOutputFilterByType DEFLATE text/css
|
|
|
|
AddOutputFilterByType DEFLATE text/javascript
|
|
|
|
AddOutputFilterByType DEFLATE application/json
|
|
|
|
AddOutputFilterByType DEFLATE application/javascript
|
|
|
|
AddOutputFilterByType DEFLATE application/x-javascript
|
|
|
|
|
2019-02-20 18:38:14 +01:00
|
|
|
</IfModule>
|