what is the url of your homepage on the server?
View not found
I just upload my project on hosting. I have a problem with views. My welcome side open and everything is displayed ok. When I try open another views I get error: Not Found
The requested URL /symulator was not found on this server. Apache/2.4.25 (Debian) Server at ... Port 80
My route: Route::get('/', function () { return view('welcome'); });
Route::get('/symulator', 'Sites@symulator')->name('symulator'); Route::get('/checklista', 'Sites@checklista')->name('checklista'); Route::get('wyniki', 'Sites@wyniki')->name('wyniki'); Route::get('/kalendarz', 'Sites@kalendarz')->name('kalendarz'); Route::get('/planowanie', 'Sites@planowanie')->name('planowanie'); Route::get('/kontakt', 'Sites@kontakt')->name('kontakt'); Auth::routes(); Route::get('/home', 'Sites@index')->name('home');
My catalog on server to: /var/www/ My catalog on localhost: /www/app/
it's not a laravel issue since it's the web server's 404 and not Laravels
Looks like mod rewrite is not working ?
just to prove that, visit http://raceday.projektstudencki.pl/index.php
your links work when added after index.php
Please or to participate in this conversation.