I\'m wondering how to disable the routing on laravel for a specific directory?
I am hoping to run my main website off of laravel (I\'m rewriting it into the framewor
I needed to exclude /billing url on Laravel 5.7 So this way worked for me:
Route::redirect('/billing', '/billing');
when billing located at: My billing folder location