美文网首页
nginx 配置 pathinfo

nginx 配置 pathinfo

作者: zhaoyanping | 来源:发表于2020-03-22 15:58 被阅读0次

    支持path_info

    try_files $uri $uri/ @rewrite;
    
    location @rewrite {
        rewrite ^/(.*)$ /index.php/$1;
    }
    

    不支持path_info

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

    相关文章

      网友评论

          本文标题:nginx 配置 pathinfo

          本文链接:https://www.haomeiwen.com/subject/iervyhtx.html