langqing 发表于 2018-10-15 23:10:30

enable-php-pathinfo.conf出了问题,请问军哥怎么恢复。

enable-php-pathinfo.conf出了问题,请问怎么恢复。
Starting nginx... nginx: "location" directive is not allowed here in /usr/local/nginx/conf/vhost/enable-php-pathinfo.conf:2
failed

licess 发表于 2018-10-16 08:28:50

只要没动过 enable-php-pathinfo.conf 肯定不是 enable-php-pathinfo.conf 的问题,你自己看看你虚拟主机 enable-php-pathinfo.conf 前后的配置

langqing 发表于 2018-10-16 08:38:30

location /
{
    try_files $uri $uri/ /index.php?$args;
}   
    location ~ [^/]\.php(/|$)
      {
            fastcgi_passunix:/tmp/php-cgi.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_param PATH_INFO $request_uri;
            include fastcgi.conf;
            include pathinfo.conf;
      }


是上面这些代码

licess 发表于 2018-10-16 17:38:56

都 enable-php-pathinfo.conf了,再加上pathinfo的代码不是多此一举了

langqing 发表于 2018-10-16 19:50:35

看来是这里错了,马上改回来看看,顺便问一下如何单独卸载和安装nginx

langqing 发表于 2018-10-16 20:45:12

去掉了      fastcgi_param PATH_INFO $request_uri;还是不行,请教军哥怎么单独卸载neginx然后再重装的方法

licess 发表于 2018-10-17 13:07:42

回复 6# 的帖子

整段location,要不你就贴出完整配置文件看看
页: [1]
查看完整版本: enable-php-pathinfo.conf出了问题,请问军哥怎么恢复。