Open GoogleCodeExporter opened 8 years ago
You need to configure IIS to make all requests hit ASP.NET process instead of
only
some of them ("*.aspx", etc).
Open your IIS Manager =>
stacked website properties =>
configuration =>
double click ".asax" extension =>
select Executable path, copy it to clipboard (should be sth like
"c:\windows\microsoft.net\framework\v2.0.50727\aspnet_isapi.dll") =>
Cancel =>
Under "Wildcat aplication maps, click INSERT =>
Paste path to "Executable:" textbox =>
Uncheck "Verify that file exists" =>
OK => OK => OK =>
Should work now.
Original comment by e...@devel4.net
on 9 Mar 2009 at 10:46
The solution in Comment 1 didn't work for me in IIS7. I would still get a 404
and the
error would say that the StaticFile handler was still being used.
I was able to resolve the issue by following the steps described on this page
http://www.improve.dk/blog/2006/12/11/making-url-rewriting-on-iis7-work-like-iis
6
Original comment by sanjazu...@gmail.com
on 29 Jul 2009 at 2:20
I managed to fix the issue by adding this to the config
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules runAllManagedModulesForAllRequests="true">
<add name="UrlRewriter" type="UrlRewritingNet.Web.UrlRewriteModule, UrlRewritingNet.UrlRewriter"/>
</modules>
</system.webServer>
Original comment by ndnz...@gmail.com
on 4 Aug 2015 at 12:04
Original issue reported on code.google.com by
affan05@gmail.com
on 21 Feb 2009 at 12:07