ngnix+php 部署成功,但是找网站的时候报404错误

server{server_namelocalhost192.168.179.130listen80;root/usr/local/webserver/data/www/... server {
server_name localhost 192.168.179.130
listen 80;
root /usr/local/webserver/data/www/b2b2c/public/;
index index.php index.html index.htm;

……
location = /50x.html {
root html;
}

location /index.php {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/webserver/data/www/public$fastcgi_script_name;
include fastcgi_params;
}
展开
 我来答
龙氏风采
2015-12-08 · 知道合伙人互联网行家
龙氏风采
知道合伙人互联网行家
采纳数:5849 获赞数:12817
从事互联网运营推广,5年以上互联网运营推广经验,丰富的实战经

向TA提问 私信TA
展开全部
你看看我的这个回答对你行不行
静态页面的index.html 是可以访问的,而动态的info.php确是404 找不到,为什么会这样那?index.html 文件目录是nginx默认安装目录 /usr/local/nginx/html,而
info.php 我把它放到了 /data/web 下 是不是这个原因 ?看下nginx.conf配置文档
server {
listen 80;
server_name localhost;

location / {
index index.html index.htm;
root html;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
}

过程
尝试更改下
location ~ \.php$ {
root /data/web;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
nginx -t && nginx -s reload
测试访问仍然不行
google
再次更改
location ~ \.php$ {
root /data/web;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /data/web$fastcgi_script_name;
include fastcgi_params;
}
nginx -t && nginx -s reload
测试一下
[root@me zongm]# curl -I
HTTP/1.1 200 OK
Server: nginx/1.0.5
Date: Mon, 01 Aug 2011 08:34:17 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.3.6
firefox 测试ok!
你试试我这个过程看看,希望我的回答对你有用,如果还有其他的问题,可以去后盾网论坛问题求助专区去提问,会让你有更多收益!
追问
路径是对的,在该路径下,自己写的1.php是可以读出来的,就是index.php不行!  不过还是要谢谢!
追答
去后盾网论坛问
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式