mirror of
https://github.com/bckelley/SimpleMVC.git
synced 2026-08-24 03:34:11 -05:00
6 lines
118 B
ApacheConf
6 lines
118 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine on
|
|
RewriteRule ^$ public/ [L]
|
|
RewriteRule (.*) public/$1 [L]
|
|
</IfModule>
|