1. 程式人生 > >laravel專案在ngnix環境中,除了首頁外其他路由404

laravel專案在ngnix環境中,除了首頁外其他路由404

今天在laravel專案中寫路由,但是是404

我用的是ngnix,最後解決方案如下

location / {
	index  index.php index.html index.htm ;
	try_files $uri $uri/ /index.php?$query_string;
}

加上一句“try_files $uri $uri/ /index.php?$query_string;”就可以了

 

原文地址:https://www.codelovers.cn/article/20181012154509.html