Routing 404 error with PhpStorm's internal server
I have no issues when I use XAMPP but if I use Storm's in-built server I get 404 error. The route file looks like this-
Route::get('/', 'PagesController@home');
Route::get('about', 'PagesController@about');
Route::get('contact', 'PagesController@contact');
No issues with
http://localhost:63342/Laravel.1/public/
but I am unable to access 'about' and 'contact' via Url
Is there any fix for the internal server?
SK
请先登录再写评论。
Could you please attach a sample project with these routes?