标签:ice index /etc index.php 使用 service nginx配置文件 原因 /etc/
出现404 Not Found的原因是nginx指向页面不存在,编辑nginx配置文件,修改nginx指向页面路径
root html; 修改为 root /usr/share/nginx/html;
index index.html index.htm; 修改为 index index.html index.htm index.php;
[root@bogon /]# vim /etc/nginx/nginx.conf location / { root /usr/share/nginx/html; index index.html index.htm index.php; } [root@bogon nginx]# service nginx restart
搭建好lnmp后,使用浏览器访问,出现404 Not Found
标签:ice index /etc index.php 使用 service nginx配置文件 原因 /etc/
原文地址:https://www.cnblogs.com/heyongzhen/p/9158842.html