I'm doing a mapping in web.config for when the person accesses the project root, already loading ~ / Default.aspx
<urlMappings enabled="true">
<add url="~/" mappedUrl="~/Default.aspx" />
</urlMappings>
Mapped URL> link
But I want to always add a slash at the end of the url:
How to do this through project setup?