为了账号安全,请及时绑定邮箱和手机立即绑定

如何解决lnmp安装包 不支持pathinfo模式

如何解决lnmp安装包 不支持pathinfo模式

PHP
HUWWW 2019-03-05 11:41:11
vhost 下我的配置文件 server { listen 80; #listen [::]:80; server_name c.ibs-bj.com ; index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/c.ibs-bj.com; include other.conf; #error_page 404 /404.html; # Deny access to PHP files in specific directory #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; } include enable-php.conf; location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 12h; } location ~ /.well-known { allow all; } location ~ /\. { deny all; } access_log /home/wwwlogs/c.ibs-bj.com.log; }
查看完整描述

2 回答

?
MYYA

TA贡献1868条经验 获得超4个赞

lnmp有pathinfo的配置文件。
你把enable-php.conf这几个字改为enable-php-pathinfo.conf

查看完整回答
反对 回复 2019-03-18
?
呼啦一阵风

TA贡献1802条经验 获得超6个赞

Nginx配置PATHINFO

location ~ \.php {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_split_path_info ^(.+\.php)(.*)$;
    fastcgi_param PATH_INFO $fastcgi_path_info;
    include fastcgi_params;
}
查看完整回答
反对 回复 2019-03-18
  • 2 回答
  • 0 关注
  • 562 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信