In the file routes.php
when i have :
Route::get('/', ['uses' => 'AdhererController@show']);
it works with url http://localhost/adhesion/public/
but when i have
Route::get('/adherer', ['uses' => 'AdhererController@show']);
or Route::get('adherer', ['uses' => 'AdhererController@show']);
it doesn't works with urls
The error is :
Not Found
The requested URL /adhesion/public/adherer was not found on this server. Apache/2.4.7 (Ubuntu) Server at localhost Port 80
What's wrong ?
Thanks in adavance for any helps !