9 lines
218 B
ApacheConf
9 lines
218 B
ApacheConf
|
RewriteEngine On
|
||
|
#RewriteBase /app
|
||
|
|
||
|
# If the request is not for a valid file
|
||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
# If the request is not for a valid link
|
||
|
RewriteCond %{REQUEST_FILENAME} !-l
|
||
|
RewriteRule ^ index.php [L]
|