tuckey UrlRewriteを使用してURL内のすべての文字を小文字にするにはどうすればよいですか?これは私が今持っているものですが、機能していないようです。
<rule match-type="regex">
<from>(.*)</from>
<to type="redirect">${lower:$1}</to>
</rule>
tuckey UrlRewriteを使用してURL内のすべての文字を小文字にするにはどうすればよいですか?これは私が今持っているものですが、機能していないようです。
<rule match-type="regex">
<from>(.*)</from>
<to type="redirect">${lower:$1}</to>
</rule>
大文字をチェックするための条件を入れる必要があります。これを試して
<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>