I am using URL rewriting using IHttpModule. The application works with a local one, but on the server application it gives an error if I wrote the path without the extension (aspx).
I had a URL rewrite module in web configuration like
<system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules> <add name="URLRewriteModule" type="URLRewriteModule" preCondition="ManagedHandler" /> </modules> <defaultDocument> <files> <add value="Login.aspx" /> </files> </defaultDocument> </system.webServer>
Also there is ExtensionlessUrlHandler-Integrated-4.0, ExtensionlessUrlHandler-ISAPI-4.0_64bit, ExtensionlessUrlHandler-ISAPI-4.0_32bit. Then also I get the following error
HTTP Error 500.0 - Internal Server Error
ManagedPipelineHandler Module
ExecuteRequestHandler notification
ExtensionlessUrlHandler-Integrated-4.0 Handler
Error Code 0x800703e9
source share