我想知道如何在 NGINX 中翻译 Apache“RewriteMap”指令。
我在 NGINX 在线文档中一无所获
我当前的 apache 代码是:
RewriteMap map-one txt:C:/map-one.txt
RewriteMap map-two txt:C:/map-two.txt
<Directory />
Options All
AllowOverride All
RewriteEngine On
RewriteRule /MYSITE/PRODUCT/([A-Za-z0-9-]+)/([A-Za-z0-9-]+),([0-9]+).aspx /$1/$2/${map-two:$3}/${map-one:$3} [R=301,L]
</Directory>
任何想法 ?