Hello,
I have a problem with routing. On my local server everything works fine. On server in DigitalOcean I have an error: Sorry, the page you are looking for could not be found.
And I have this debug trace: Pastebin
Do you have any similar problems ?
This is my routing file:
Route::group( array('domain' => DOMAIN_NAME), function () { Route::get('/', array('uses' => 'coin@index'))->middleware('throttle:6'); Route::get('/generate', array('uses' => 'generate@index'))->middleware('throttle:6'); } );
Main site works but generate not, and every other address than / not works.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community