搜索

首页  >  问答  >  正文

nginx rewrite 正则表达式

http://localhost/action
http://localhost/action/pre/xx/xx

所有action接口交给tomcat处理, 但为了能同时访问上面的两个URL, 我配置了下面两个location段, 总觉得这种配置方式不是很优雅, 请教大神有什么更好的方法, 不甚感激!

location ~ ^/(action)/?$ {
    proxy_pass  http://tomcats;
}

location ~ ^/(action)/(.+)$ {
    proxy_pass  http://tomcats;
}
巴扎黑巴扎黑2744 天前764

全部回复(2)我来回复

  • phpcn_u1646

    phpcn_u16462017-05-21 18:59:24

    你好,请问一下

    thinkPHP3.2留言板视频教程

    原地址是什么,我想去研究一下。

    回复
    0
  • 曾经蜡笔没有小新

    曾经蜡笔没有小新2017-05-19 10:50:22

    看你的需要求,直接

    location ^~ /action/{
        proxy_pass  http://tomcats;
    }

    应该就行了。

    回复
    0
  • 取消回复