laravel/public/.htaccess

9 lines
195 B
ApacheConf
Raw Normal View History

2011-08-03 22:15:08 -05:00
<IfModule mod_rewrite.c>
2013-06-15 13:15:13 -05:00
Options -MultiViews
RewriteEngine On
2013-04-09 15:37:50 -05:00
RewriteCond %{REQUEST_FILENAME} !-d
2013-06-15 13:15:13 -05:00
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>