nginx+php-fpm 不解析php

发布于 2021-11-24 04:34:15 字数 7522 浏览 880 评论 5

比如简单的脚本hello.php

<?php 

echo "hello";

?>

访问的话就显示 echo "hello";


server {
    listen       8100;
    #listen       somename:8080;                                                                                                                                                                                                                                
    server_name  game.xxx.com;


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


   # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000                                                                                                                                                                                         
   #                                                                                                                                                                                                                                                            
   location ~ [^/].php(/|$) {                                                                                                                                                                                                                                  
       fastcgi_pass   127.0.0.1:9000;                                                                                                                                                                                                                           
       fastcgi_index  index.php;
       fastcgi_param  SCRIPT_FILENAME  /home/www/$fastcgi_script_name;
       include        fastcgi_params;
   }                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

路还长,别太狂 2021-11-30 12:48:01

你写的这是什么?php标签没这么写的

冷清清 2021-11-30 10:23:14

hello world 程序都写错了,呵呵了!

<?php >

echo "hello";

<?>

还是感谢两位的帮助! ^_^

三月梨花 2021-11-30 07:45:05
删掉这个或者放到 location ~ [^/].php(/|$) {  }后面面
location / {                                                                                                                                                                                                                                                
        root   /home/www;
        index  index.html index.htm;
    }

伴我心暖 2021-11-28 21:20:51
location ~ .php$ {
            root          /home/noevilme/zabbixroot; 
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;

}

仅供参考,不专业,只是装过

能否归途做我良人 2021-11-24 17:13:14

引用来自“腾讯公告”的评论

删掉这个或者放到 location ~ [^/].php(/|$) {  }后面面
location / {                                                                                                                                                                                                                                                
        root   /home/www;
        index  index.html index.htm;
    }

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文