This question already has an answer here:
The fix in the duplicate question doesn't work.
I tried all the Fixes in stackoverflow but nothing seems to be working laravel trailing Slashes redirect to localhost
Route
Route::get('/admin', array('as' => 'admin', 'uses' => 'Admin\Admin@getLogin'));
This URL is working fine http://localhost/app/admin
but when I add a trailing slash in front of it http://localhost/app/admin/ it gets redirected to http://localhost/admin
Help!
i too had this problem and mine need a combination of the above with suggestions from some other posts. Don't remember from which posts anyways this was my .htaccess that got me working correctly.
And 1 more thing our project did not have public in the url.
Added this and it worked!