Private
Public Access
1
0

add production mods

This commit is contained in:
2016-11-21 13:45:28 +01:00
parent 5a3ce73e40
commit ed40ad02da
9 changed files with 53 additions and 29 deletions

7
web/.htaccess-prod Normal file
View File

@@ -0,0 +1,7 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{THE_REQUEST} ^(GET|HEAD)\ /web/
RewriteRule ^(.*)$ /$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app.php [QSA,L]
</IfModule>