formwork/.htaccess
2018-06-20 12:11:13 +02:00

24 lines
747 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)$ - [R=404,L]
RewriteRule ^(LICENSE|composer\.lock|gulpfile\.js|\.gitignore)$ - [R=404,L]
RewriteRule ^admin/(accounts|languages|logs|schemes|src|views)/.* admin/index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^admin/.* admin/index.php [L]
## Let all URI be processed by index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^.* index.php
</IfModule>