首页  >  问答  >  正文

url-rewrite - nginx rewrite冲突解决

想要实现的效果是
abc.com/hello => abc.com/article.php?link=hello
abc.com/en/ => abc.com/index.php?lang=en
abc.com/en/hello => abc.com/article.php?link=hello&lang=en
目前的写法是
location / {

    try_files $uri $uri/ =404;
    if (!-e $request_filename){
        rewrite ^/(.*)$ /article.php?link= last;
    }
}
location /en/ {
    rewrite index index.php?lang=en;
    rewrite ^/en/(.*)$ /article.php?link=&lang=en last;        
}

目前的问题是abc.com/hello是没问题的,abc.com/en/hello也是没问题的,abc.com/en/会被当成hello那样解析出现错误

曾经蜡笔没有小新曾经蜡笔没有小新2713 天前491

全部回复(1)我来回复

  • 怪我咯

    怪我咯2017-05-16 17:24:08

    /en/ 也作为一个rewrite规则来做

    回复
    0
  • 取消回复