nginx+php-fpm 不解析php
比如简单的脚本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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
你写的这是什么?php标签没这么写的
hello world 程序都写错了,呵呵了!
<?php >
echo "hello";
<?>
还是感谢两位的帮助! ^_^
引用来自“腾讯公告”的评论