lnmp 总是下载index.php问题

 

 

1.配置nginx.conf文件

 location ~ \.php(.*)$ {
	        fastcgi_pass  unix:/tmp/php-cgi.sock;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }

2.配置绑定网站目录配置文件 www.test.com.conf

 listen 127.0.0.1:9000;
        #listen [::]:80;
 server_name www.cygfast.club cygfast.club;
 index.html index.htm index.php default.html default.htm default.php;
 root  /data/www/blog/public;

 include rewrite/other.conf;
 include enable-php-pathinfo.conf;

3.检查enable-php.conf配置文件

location ~ [^/]\.php(/|$)
{
    try_files $uri =404;
    fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
}

4.检查fastcgi.conf配置文件

# fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/";

该配置注销之后修改为

fastcgi_param PHP_ADMIN_VALUE "open_basedir=/data/www/:/tmp/:/proc/";

/data/www为你的项目目录,为了解决访问index.php报出来的错误 ,错误如下图所示

5.出现错误的时候可以在index.php文件里加入如下代码 ,查看什么错误

error_reporting(E_ALL); ini_set('display_errors', '1');

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值