Monday, March 6, 2017

Laravel 5 - can not reset password on production server 404 - Not Found

Anyone knows why the route '/password/email' returns 404 Not Found error on production server, but works on local?

When user is trying to reset his password by email (https://compariimobiliare.ro/password/reset), the POST URL https://compariimobiliare.ro/password/email gives 404 Not Found error. Same URL works fine on local server, but not on production.

The route is there, I can see it when I run the command:

php artisan route:list

POST | password/email | | App\Http\Controllers\Auth\ForgotPasswordController@sendResetLinkEmail | web,guest 



via Andrei J

Advertisement