Initial commit
This commit is contained in:
commit
f48cdc268b
31 changed files with 628 additions and 0 deletions
14
content/.htaccess
Normal file
14
content/.htaccess
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
DirectorySlash Off
|
||||
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine On
|
||||
RewriteBase /
|
||||
|
||||
# Serve static files from /app outside document root
|
||||
RewriteRule ^app/(.*)$ /app-proxy.php?file=$1 [L,QSA]
|
||||
|
||||
# Don't rewrite if file exists
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_URI} !^/app/
|
||||
RewriteRule ^(.*)$ /index.php [L,QSA]
|
||||
</IfModule>
|
||||
Loading…
Add table
Add a link
Reference in a new issue