Reputation: 439
i'm doing some work on a legacy asp.net and umbraco site. It's using UrlRewritingNet to set up rules for url manipulation.
I'd like to create a rule in the UrlRewritingNet file to convert all urls to lower case. Can you please help.
Upvotes: 0
Views: 374
Reputation: 854
Doesn't appear to be a way to do this in the actual string in the config line. I think you can pretty easily write your own extension for this and just ToLower() the actual values when you process the rule.
Upvotes: 1