formwork/.htaccess
2019-09-23 23:01:36 +02:00

22 lines
735 B
ApacheConf
Executable File

AddDefaultCharset UTF-8
<IfModule mod_rewrite.c>
## Enable rewrite rules
RewriteEngine on
## Prevent direct access to Formwork folders
## but allow access to template assets
RewriteRule ^templates/assets/.* - [L]
RewriteRule ^(cache|config|formwork|templates|vendor)/.* index.php [L]
RewriteRule ^(.*)\.(md|yml|json)/?$ index.php [L]
RewriteRule ^(LICENSE|composer\.lock|\.gitignore|\.php_cs|nginx.conf)/?$ index.php [L]
RewriteRule ^admin/(accounts|languages|logs|schemes|src|views)/.* index.php [L]
RewriteRule ^admin/(\.eslintrc|gulpfile\.js)/?$ index.php [L]
## Let all URI be processed by index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.* index.php
</IfModule>