thinkphp6配置nginx使带不带index.php都能访问

配置如下内容至nginx配置文件中 然后重启服务

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

你可能感兴趣的:(PHP)