2

我有一个看起来像的网址

domain.com/f1/v1/f2/v2/f3/v3/f4/v4/f5/v5/f6/v6

具有较小数量的变化,例如

domain.com/f1/v1/f2/v2/f3/v3/f4/v4/f5/v5
domain.com/f1/v1/f2/v2/f3/v3/f4/v4
domain.com/f1/v1/f2/v2/f3/v3
domain.com/f1/v1/f2/v2
domain.com/f1/v1

我如何建立一个重写规则来构建以下内容

domain.com/models?f1=v1&f2=v2...f6=v6

该网站是一个使用 Helicon Isapi_Rewrite 进行 url 重写的 IIS 6 MVC 3 应用程序。

4

2 回答 2

0

最好的方法是创建一组规则,每个规则将处理 1 对、2 对、3 对参数...

RewriteEngine on
RewriteBase /

# rule for one pair of parameters
RewriteCond %{HTTP:Host} ^domain\.com$ [NC]
RewriteRule ^([^/]+)/([^/]+)$ /models?$1=$2 [NC,L]

# rule for two pairs of parameters
RewriteCond %{HTTP:Host} ^domain\.com$ [NC]
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)$ /models?$1=$2&$3=$4 [NC,L]
于 2012-07-03T09:21:23.290 回答
0

我使用地图提出了这个解决方案。我遇到的主要问题是超出了对占位符的 1-9 美元限制。

RewriteMap filtermap txt:content/maps/filtermap.txt [NC]

RewriteCond ${filtermap:$6|NOT_FOUND} !NOT_FOUND  [NC]
RewriteRule ^models/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)   /models/?${filtermap:$1}&${filtermap:$2}&${filtermap:$3}&${filtermap:$4}&${filtermap:$5}&${filtermap:$6} [NC,L]

RewriteCond ${filtermap:$5|NOT_FOUND} !NOT_FOUND  [NC]
RewriteRule ^models/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)                 /models/?${filtermap:$1}&${filtermap:$2}&${filtermap:$3}&${filtermap:$4}&${filtermap:$5} [NC,L]

RewriteCond ${filtermap:$4|NOT_FOUND} !NOT_FOUND  [NC]
RewriteRule ^models/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)                               /models/?${filtermap:$1}&${filtermap:$2}&${filtermap:$3}&${filtermap:$4} [NC,L]

RewriteCond ${filtermap:$3|NOT_FOUND} !NOT_FOUND  [NC]
RewriteRule ^models/([^/]*/[^/]*)/([^/]*/[^/]*)/([^/]*/[^/]*)                                             /models/?${filtermap:$1}&${filtermap:$2}&${filtermap:$3} [NC,L]

RewriteCond ${filtermap:$2|NOT_FOUND} !NOT_FOUND  [NC]
RewriteRule ^models/([^/]*/[^/]*)/([^/]*/[^/]*)                                                           /models/?${filtermap:$1}&${filtermap:$2} [NC,L]

RewriteCond ${filtermap:$1|NOT_FOUND} !NOT_FOUND  [NC]
RewriteRule ^models/([^/]*/[^/]*)                                                                         /models/?${filtermap:$1} [NC,L]

它不是超级漂亮,但它确实有效。过滤器图如下所示

    p1/v1  p1=v1
    p2/v2  p2=v2
...

如果你的 p1/v1 组合是无限的,这不是一个理想的解决方案,但我的组合是有限的,所以它很容易管理。

于 2012-07-03T20:07:18.153 回答