mirror of
https://github.com/bckelley/avogadrio.git
synced 2026-08-24 02:04:11 -05:00
9 lines
228 B
ApacheConf
9 lines
228 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
Options -MultiViews
|
|
|
|
RewriteEngine On
|
|
#RewriteBase /path/to/app
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^ index.php [QSA,L]
|
|
</IfModule> |