apache-server-comp / .htaccess
ladogton2010's picture
mvc
eff3714
raw
history blame contribute delete
123 Bytes
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>