WDCP配置ThinkPHP5伪静态隐藏index.php,出现“”解决重定向次数过”问题

佐手、 提交于 2019-12-01 22:41:53

站点域名的配置:xxx.com.conf

server {
        listen       80;
        root /www/web/xxx_com/public_html;
        server_name xxx.com;
        index  index.html index.php index.htm;
        error_page  400 /errpage/400.html;
        error_page  403 /errpage/403.html;
        error_page  404 /errpage/404.html;
        error_page  503 /errpage/503.html;
        location ~ \.php(.*)$ {
            fastcgi_pass  unix:/tmp/php-70-cgi.sock;
            fastcgi_index  index.php;
            #fastcgi_param  SCRIPT_FILENAME  $DOCUMENT_ROOT$fastcgi_script_name;
            #fastcgi_param PATH_INFO $2;
            include fcgi.conf;       #下面追加的
            set $real_script_name $fastcgi_script_name;
            set $path_info "";
            if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
                set $real_script_name $1;
                set $path_info $2;
            }
            fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
            fastcgi_param SCRIPT_NAME $real_script_name;
            fastcgi_param PATH_INFO $path_info;
        }
        location ~ /\.ht {
            deny  all;
        }
        location / {       #伪静态重写的
            if (!-e $request_filename) {
               rewrite  ^/(.*)$  /index.php/$1  last;
               break;
            }
            try_files $uri $uri/ /?$args;
        }
}

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!