Laravel 4 pretty ulrs not working
I'm using xampp 1.8.3.
My .htacces (in public folder)
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
All the "AllowOverride" of the httpd.conf are set to "All".
Uncommented:
LoadModule rewrite_module modules/mod_rewrite.so
I don't use virtualhosts (should I?).
/public/index.php/something works but /public/something don't.
What am I missing?
No comments:
Post a Comment