0

如何使用 tukey UrlRewrite 小写 url 中的每个字母?这就是我现在所拥有的,但似乎没有用。

<rule match-type="regex"> <from>(.*)</from> <to type="redirect">${lower:$1}</to> </rule>

4

1 回答 1

2

您应该设置检查大写字母的条件。尝试这个

<rule>
   <name>Force  URL's that contain upper case letter to lower case</name>
   <condition type="request-uri" casesensitive="true">^.*[A-Z].*$</condition>
   <from>^(.*)$</from>
   <to type="permanent-redirect">${lower:$1}</to>
</rule>
于 2012-07-25T11:01:32.630 回答