laravel配置路由后,除了首页,其他页面404
解决这类问题 nginx配置需要在nginx/conf/nginx.conf中的server中location / {
root D:/mulu;
indexindex.html index.htm index.php;
try_files $uri $uri/ /index.php?$query_string;
}
加上 try_files $uri $uri/ /index.php?$query_string;
文档来源:51CTO技术博客https://blog.51cto.com/u_15294355/2988594
页:
[1]