Remove Unwanted Characters from Umbraco Nice URL

The simple way to remove unwanted characters from your URL is to change the rules umbraco uses when it generates the NiceUrl.
Edit the config/umbracoSettings.config
add a rule to remove all apostrophes from NiceUrls like so:
<urlReplacing> 
    ... 
    <char org="'"></char>     <!-- replace ' with nothing --> 
    ... 
</urlReplacing> 
Note: The contents of the "org" attribute is replaced with the contents of the element, here's another example:
<char org="+">plus</char> <!-- replace + with the word plus --> 

Comments

Popular posts from this blog

Create a .NET Contact Form that Gets the Last Url Visited in C# Can also be Used in Umbraco

Umbraco - Reset the Admin Password via SQL Server

Umbraco Macro for IFrame when Embedding Video, Vimeo Universal Player, or other types of IFrame on to a Page XSLT version and Razor Version