安装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欢迎页面。
都没有人知道吗?
nginx 配置有问题,先看看 nginx+php怎么整 网上有帖子,搜搜吧,应该是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]