Have you guys successfully done mapping already? Say, I want to map:
/stars/alive/vedder
to: /vedder
I tried putting this in web.config
:
<system.web>
<urlMappings enabled="true">
<add url="~/" mappedUrl="~/stars/alive"/>
</urlMappings>
</system.web>
However, it doesn't seem to do anything. I can only still access stars/alive/vedder
, but not directly /vedder
.
My nuget package is servicestack.razor 3.9.55.0.
What have I done wrong? Thank you.
P.S. I have this other question, not sure if they are related issues.