搭建好lnmp后,使用浏览器访问,出现404 Not Found

Posted heyongzhen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建好lnmp后,使用浏览器访问,出现404 Not Found相关的知识,希望对你有一定的参考价值。

出现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;

[[email protected] /]# vim /etc/nginx/nginx.conf
location / {
    root /usr/share/nginx/html;
    index index.html index.htm index.php;
}
[[email protected] nginx]# service nginx restart

 

以上是关于搭建好lnmp后,使用浏览器访问,出现404 Not Found的主要内容,如果未能解决你的问题,请参考以下文章

lnmp 搭建后,nginx下php文件404但是html文件正常访问已解决

Linux搭建好apache后,只有本地能访问,局域或外网不能访问

lnmp一键安装访问default目录可行,访问其它站点报404错误

404 not found ------ nginx ----- lnmp/lnmpa centOS7

.net网站搭建好以后 服务器上可以正常访问 但是通过域名外网访问就出错

在Nginx下搭建wordpress时,最易出现404问题,如何解决