需要在网址中插入/#/

时间:2018-07-09 19:46:20

标签: nginx

我正在尝试创建try_files或重写规则。仅针对带有查询的特定网址

http://example.com/survey?id=5变为http://example.com/survey/#/?id=5

1 个答案:

答案 0 :(得分:0)

这可以做到:

location =/server {
        rewrite ^ $scheme://example.com/server/# permanent;
}
  • 使用$ scheme保留请求的方案(http或https)。
  • 使用位置= / server将请求匹配到/ server,并且您需要=仅匹配完全匹配的内容,否则您将继续被重定向。