I am useing a web.config file to make a rewrite to my website
The only rule is
<rule name="id">
<match url="([_0-9a-z-]+)" />
<action type="rewrite" url="default.asp?id={R:1}">
</rule>
The code working fine,but the problem is when The page call images or files like CSS or JavaScript from another folder it doesn't work at all. How can I avoid that problem?