我的是阿里云的一台Ubuntu16.04主机,nginx安装成功了,访问IP(如:0.0.0.0)显示的是nginx欢迎页面,但我访问0.0.0.0/index.html
显示404,在主机输入curl 127.0.0.1/index.html
打开的是404页面文件。也就是说所有的根目录的文件都没有路由,请问怎么解决这个问题呢?
PHP中文网2017-05-27 17:47:02
/etc/nginx/conf.d/nginx.conf
默认配置
/etc/nginx/sites-available/default
默认localhost配置
/var/www/html/
默认工作目录
http://localhost/index.nginx-debian.html
默认欢迎页全url
所以你需要编辑 /etc/nginx/sites-available/default
root
root
那行,目录改成自己的目录。
滿天的星座2017-05-27 17:47:02
nginx安装目录下的conf/nginx.conf配置如下:
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
}
其中root
属性指定了访问的文件所在根目录,index
属性指定默认的访问页面,location /
表示匹配所有请求。
页面报404,那么你就到root
指定的目录下查看是否有index.html文件