mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
13 lines
204 B
ApacheConf
13 lines
204 B
ApacheConf
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteRule ^.*$ index.php [L]
|
|
|
|
# Protect .env file
|
|
<Files .env>
|
|
Order allow,deny
|
|
Deny from all
|
|
</Files>
|