Hi everyone. I got a very strange problem with laravel. I get a 404 Not found when a specific url is requested. I have an entire website working on-line, every route works fine except this one
Route::get('modifica_pagamenti/{codice_fiscale}/{stagione_sportiva}','PagamentiController@modifica_pagamenti')->where('stagione_sportiva', '(.*)');
NOTE: I'm Italian, so some specific names are in Italian but I don't think that this is a problem :)
Using the online website I get this message
"Not Found
The requested URL /modifica_pagamenti/gzzncl94e13l781o/2016/2017 was not found on this server."
The other routes are ok and when I develop on localhost this route works and it gives me the right View with data I need. The method on my "PagamentiController" is defined
public function modifica_pagamenti($codice_fiscale,$stagione_sportiva){
//My code here
}
I really don't know how to solve this. If someone could help me I would really appreciate that.
If any other information is required, just ask and I'll answer :)
Thanks for all.