How can i get IIS 7 to return my custom error pages for file without extension? I got it working for file with extension, but when the extension is not specified, i get the generic page.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Try adding a wildcard application extension that maps to the aspnet_isapi.dll.

Without that mapping, requests will never hit the aspnet dll for processing and the default IIS 404 page will be returned.

link|improve this answer
feedback

Well if you are dealing with such a situation you should handle these no extension files and then redirect to your custom error page.

link|improve this answer
feedback

IIS 7 supports extension less URLs, you can use this with combination of Urlrewriting.net

here is very good article about achieving what you want.

http://www.vinodunny.com/blog/post/ASPNET-Extensionless-URL-ReWriting-in-IIS-7.aspx

link|improve this answer
i am actually using urlrewriter.NET and even after applying what the article says, i have no luck getting it to work – zaladane May 3 '09 at 1:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.