mirror of
https://github.com/bckelley/SimpleMVC.git
synced 2026-08-24 03:34:11 -05:00
8 lines
216 B
ApacheConf
8 lines
216 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
Options -Multiviews
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
|
|
</IfModule> |