解决nginx不支持pathinfo办法

    location / {
        root   /var/www/html;
        index  index.php index.html index.htm;
        if (!-e $request_filename) {
        rewrite  ^(.*)$  /index.php?s=$1  last;
        break;
        }
    }

    
    location ~ \.php(.*)$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_split_path_info ^(.+\.php)(.*)$;
        fastcgi_param  PATH_INFO $fastcgi_path_info;
        fastcgi_param  SCRIPT_FILENAME  /var/www/html$fastcgi_script_name;
        include        fastcgi_params;
    }

上面的nginx配置 (主要是加粗的地方)

我用的是tp3.2 然后项目配置下url模式改为2,,这样就可以访问了 ,也不会出错


猜你喜欢

转载自blog.csdn.net/qq_35349114/article/details/78281488
今日推荐