0
私はLunuxに取り組んでいます。私の作成したローカルWebページはうまくいきますが、プロダクションサーバーを送った後、メインページのみがルーティングされています。例えば、アドレスhttps://demo.tiltkomp.pl/については は、戻り作業が、https://demo.tiltkomp.pl/aboutさ"NetworkError: 404 Not Found - https://demo.tiltkomp.pl/about"
プロダクションサーバのサブページのルーティングが機能しない
私web.php
:
Route::get('/', '[email protected]');
Route::get('about', '[email protected]');
PagesController.php
中:私はミスをしない
class PagesController extends Controller
{
public function index(){
return view('pages.index');
}
public function about(){
return view('pages.about');
}
}
?
おそらく 'mod_rewrite'を有効にする必要があります – Farkie
http://stackoverflow.com/questions/11791375/laravel-routes-not-working?rq=1 – Farkie
権限エラーになる可能性があります:https:// laravel。 com/docs/master/installation#configuration – littleswany