Laravel 5.4 Disable Register Route

前端 未结 13 2310
旧时难觅i
旧时难觅i 2020-12-13 00:09

I am trying to disable the register route on my application which is running in Laravel 5.4.

In my routes file, I have only the

Auth::routes();


        
相关标签:
13条回答
  • 2020-12-13 00:54

    I guess you can do it like this, in your web.php file:

    Route::redirect('register', 'login', 301);
    
    0 讨论(0)
提交回复
热议问题