Hi.
the following is how i setup url rewriter in web.config
my profile url is https://yourdomain.com/profile/e12d3bty3.html and e12d3bty3 is customer code (unique code which able to load customer data accordingly like name, age and selected design)
Is it possible i can remain the profile url but load different folder (from folder /design01/member.aspx to folder /design02/member.aspx)
<rewriter>
<rewrite url="~/profile/([0-9a-z-]+).html$" to="~/design01/member.aspx?code=$1"/>
</rewriter>