taller-mvc / mvc /.htaccess
ladogton2010's picture
Redirecting to public folder
694a3b2
raw
history blame contribute delete
123 Bytes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>