您当前的位置:首页 > 计算机 > 服务器 > Nginx

解决Nginx 404 not found问题

时间:05-24来源:作者:点击数:

在Nginx安装目录下找到 “conf” 文件夹下的 “vhost.conf”

在 “vhost.conf” 中有以下代码:

location / {
           index  index.html index.htm index.php;
           #autoindex  on;
       }

把这段代码用以下代码代替即可:

location / {
   try_files $uri $uri/ /index.php?$query_string;
}
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门