sutking 发表于 2014-10-30 19:49:00

安装PHP5之后测试出现问题请教解决办法!!急!急!急!!

本帖最后由 sutking 于 2014-10-30 19:50 编辑

sudo spt-get install php5
之后一切顺利完成,然后
sudo nano /usr/share/nginx/html/testphp.php
内容是“<?php phpinfo(); ?>”(没有引号),
但是在输入http://IP地址/testphp.php之后
变成了下载“testphp.php”这个文件,而不是打开php页面,
请问这是为何?该怎么解决?
另:直接输入http://IP地址/之后可以正常显示静态的nginx欢迎页面。

sutking 发表于 2014-10-31 12:57:30

都没有人知道吗?

sanshi0815 发表于 2014-11-4 20:05:49

nginx 配置有问题,先看看 nginx+php怎么整

googlewell 发表于 2014-11-5 14:12:02

网上有帖子,搜搜吧,应该是php没有解析
http://blog.chensibo.com/i-work-for-nginx-mysql-php-raiders-build-raspberry-pi/

摘要,具体自己看吧
vi /etc/nginx/sites-availiable/default

location ~ .*\.php(\/.*)*$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params; #开启php解析,使用php-fpm作为Fastcgi通信模块
}
页: [1]
查看完整版本: 安装PHP5之后测试出现问题请教解决办法!!急!急!急!!