today I had a problem when I try to access my project route in windows iis server.
my application url is : demo.example.com/testing/
the root routing is working '/'
, but not with the other.
for example, if I try to clicking menu with '/home/'
route, the url will be like demo.example.com/home'
, the 'testing'
is gone somehow.
PS : I already remove the 'public'
folder with moving all of files in public folder outside, and moving the other files into new folder.
Route example:
Route::get('/', 'frontend\frontController@index');
Route::get('/login', 'frontend\frontController@login');
Thanks for helping !