我想设立国家地理信息小组,以便所有形式要求:
example.com/$
example.com/$/
example.com/$/a
example.com/$/a/
example.com/$/a/b/
are forwarded to one upstream server and everything else is forwarded to another upstream server but cannot get it to work. I am trying following config:
location / {
// server 1
}
location ~ ^/$/(.*)$ {
// server 2
}
<代码>~是贴切的。 我已使用<条码>条码>来逃避<条码>><美元/代码>。 <代码>/*应符合上文所列表格的行文。
但当我要求<代码>example.com/$时。 我再次收到NGIssel的不实请求。 是否有任何人知道如何这样做? 此外,我还需要处理编码版的《世界投资倡议》:
> encodeURIComponent( $ )
%24
因此,如果URI使用%24<>/code>,而不是
$
,则应妥善处理。 感谢。