Last active
August 26, 2016 12:59
-
-
Save mmintel/14390bf3f6db154dbc9dafb4a116d8f5 to your computer and use it in GitHub Desktop.
Kirby with Dokku
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Kirby .htaccess | |
| # rewrite rules | |
| <IfModule mod_rewrite.c> | |
| # enable awesome urls. i.e.: | |
| # http://yourdomain.com/about-us/team | |
| 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 your homepage is http://yourdomain.com/mysite | |
| # Set the RewriteBase to: | |
| # | |
| # RewriteBase /mysite | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule ^(.+)\.([0-9a-z]{32})\.(js|css)$ $1.$3 [L] | |
| # 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] | |
| # block all files in the kirby folder from being accessed directly | |
| RewriteRule ^kirby/(.*) index.php [L] | |
| # make panel links work | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule ^panel/(.*) panel/index.php [L] | |
| # make site links work | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule ^(.*) index.php [L] | |
| </IfModule> | |
| # Add caching | |
| <IfModule mod_expires.c> | |
| ExpiresActive On | |
| ExpiresDefault "access plus 10 days" | |
| ExpiresByType text/css "access plus 1 week" | |
| ExpiresByType text/plain "access plus 1 month" | |
| ExpiresByType image/gif "access plus 1 month" | |
| ExpiresByType image/png "access plus 1 month" | |
| ExpiresByType image/jpeg "access plus 1 month" | |
| ExpiresByType application/x-javascript "access plus 1 month" | |
| ExpiresByType application/javascript "access plus 1 week" | |
| ExpiresByType application/x-icon "access plus 1 year" | |
| </IfModule> | |
| # Additional recommended values | |
| # Remove comments for those you want to use. | |
| # | |
| # AddDefaultCharset UTF-8 | |
| # | |
| # php_flag short_open_tag on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment