blessing-skin-server/.htaccess

13 lines
204 B
ApacheConf
Raw Normal View History

2016-07-21 22:01:57 +08:00
RewriteEngine On
2016-07-24 14:14:37 +08:00
2016-07-21 22:01:57 +08:00
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
2016-07-24 14:14:37 +08:00
RewriteRule ^.*$ index.php [L]
# Protect .env file
<Files .env>
Order allow,deny
Deny from all
</Files>