I am using Intelligencia.UrlRewriter for URL rewrite in my asp.net application. My URL structure is like www.example.com/media/index.html. I am facing a big problem with URL rewrite, whatever append with the above mentioned url its taking to same page.How can i prevent append apart from ? and / My URL rewrite code as follows.
<rewrite url="^/media/index.html" to="~/admin/media.aspx" />
if i type /media/index.htmltestt then also its displaying same page. How can i solve this issue. Please help me