0

tuckey 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 に答える