12 lines
296 B
ApacheConf
12 lines
296 B
ApacheConf
Options -Indexes
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
|
|
# Allow direct access to public assets
|
|
RewriteCond %{REQUEST_URI} ^/public/ [NC]
|
|
RewriteRule ^ - [L]
|
|
|
|
# Route everything else to index.php
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^(.*)$ index.php [QSA,L] |