Sorry I don't know what the official term would be called, but how would you go about transferring all inquiries from your host (in my case 1&1), to you asp.net application. Im going crazy trying to figure this out.
Currently i have this in my web.config:
basically i wrote a urlrewriter httpmodule, and on my local machine it works fine, for example:
I can type /somepath and it rewrites /somepath.aspx.
the problem is that when i upload my site to my host, it automatically hits their 404 error page, completely bypassing my httpmodule. How can i get around this?
Currently i have this in my web.config:
Code:
<httpHandlers>
<clear />
<add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory" />
</httpHandlers>
I can type /somepath and it rewrites /somepath.aspx.
the problem is that when i upload my site to my host, it automatically hits their 404 error page, completely bypassing my httpmodule. How can i get around this?
Comment