i have laravel project 5.3 i need laravel to always put something before the url i mean if i did this to laravel
Route::resource('/users','UsersController');
i need
Route::resource('something/users','UsersController');
for every link i have in the project when i move the project to appserv its always redirect to
localhost/mylink
and its should be like this
locahost/projectname/mylink
thanks
via Awar Pulldozer