I have used the Intelligencia.UrlRewriter.dll for URl Rewriting in my asp.net application. and added rules in the web.config files like
<rewriter>
<
rewrite url="~/green(.*)" to="~/greenpage.aspx"/>
<rewrite url="~/yellow(.*)" to="~/yellowpage.aspx"/>
</
rewriter>
when i run it in Visual studio it works fine. like http//localhost:1288/myproject/green
but when i run it through localhost/myproject/myproject/green
it shows page cann't be displayed.
Why is this happening with localhost