14 lines
241 B
ApacheConf
14 lines
241 B
ApacheConf
|
RewriteEngine on
|
||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
RewriteRule . index.php [L]
|
||
|
|
||
|
# Disable index view
|
||
|
Options -Indexes
|
||
|
|
||
|
# Hide a specific file
|
||
|
<Files .env>
|
||
|
Order allow,deny
|
||
|
Deny from all
|
||
|
</Files>
|