Disable Laravel Routing for a specific folder/route

前端 未结 6 1279
陌清茗
陌清茗 2021-01-17 08:49

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

6条回答
  •  误落风尘
    2021-01-17 09:45

    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

提交回复
热议问题