mirror of
https://github.com/getformwork/formwork.git
synced 2025-01-16 13:09:08 +01:00
26 lines
718 B
ApacheConf
26 lines
718 B
ApacheConf
AddDefaultCharset utf-8
|
|
|
|
<IfModule mod_mime.c>
|
|
AddCharset utf-8 .css .js .svg
|
|
</IfModule>
|
|
|
|
<IfModule mod_rewrite.c>
|
|
## Enable rewrite rules
|
|
RewriteEngine on
|
|
|
|
## Let all URI be processed by index.php
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^.* index.php [L]
|
|
|
|
## Prevent direct access to Formwork folders
|
|
RewriteRule ^(panel|backup|bin|cache|formwork|site|vendor)/.* index.php [L,NC]
|
|
|
|
## Prevent access to specific files
|
|
RewriteRule ^(.*)\.(md|yml|yaml|json|neon)/?$ index.php [L,NC]
|
|
RewriteRule ^(LICENSE|composer\.lock)/?$ index.php [L,NC]
|
|
RewriteRule (^|/)\.(?!well-known)/? index.php [L,NC]
|
|
</IfModule>
|
|
|
|
## Disable access to directory indexes
|
|
Options -Indexes
|