3

我想知道如何在 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> 

任何想法 ?

4

1 回答 1

4

检查Nginx HTTP 映射模块

map $uri $new {
  default               http://www.domain.com/home/;

  /aa                   http://aa.domain.com/;
  /bb                   http://bb.domain.com/;
  /john                 http://my.domain.com/users/john/;
}
于 2014-07-29T00:19:57.470 回答