I have a rewrite rule to make the URL all lower case. It ran before anything else. Site would load fine, things were good, but sync was broken. After some trial and errors I figured it was the rewrite rule. I also tried the build in rule for this with IIS and same issues. With that, is it possible to make a change so the path is all lower case? I didn't think this would have been an issue but it seems to be.Here is my rule @rule name="Convert to lower case" stopProcessing="true"@
@match url=".*[A-Z].*" ignoreCase="false" /@
@action type="Redirect" url="{ToLower:{R:0}}" redirectType="Permanent" /@
@/rule@
↧