↧
Answer by magnattic for ASP.net url rewrite force lowercase
You can either modify the regular expression to exclude .ashx files (which might get extremely complicated) or create a new rule before this rule, that will catch URLs pointing to ashx files and...
View ArticleASP.net url rewrite force lowercase
I have:<!-- Force lowercase URLS --><rewrite url="~/(.*[A-Z]+.*)$" to="~/handlers/permredirect.ashx?URL=${lower($1)}" />Perm redirect simply 301 redirects to the new URL.This rule is meant...
View Article
More Pages to Explore .....