WAMP, Laravel 5: Routes not working - NotFoundHttpException
问题 I'm using Laravel 5 with WAMP on my local machine, no virtualization. After creating a fresh project using Composer called "LaravelProject", I can't seem to get my routes working at all. What I've already done: Edited httpd.conf to uncomment the line LoadModule rewrite_module modules/mod_rewrite.so Edited the /public/.htaccess file to be Options +FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] Refreshed WAMP