这种情况,打开Nginx服务配置文件或者VHOST配置文件
找到
location / {
index index.html index.htm index.php;
#autoindex on;
}
改为
location / {
index index.html index.htm index.php;
try_files $uri $uri/ /index.php?$query_string;
#开启路由访问,laravel项目改为此条
#autoindex on;
}
重启服务就OK了