proxitok/.htaccess
Pablo Ferreiro fa632b1f2d
First commit
2022-01-01 20:14:57 +01:00

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>