views:

509

answers:

3

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.

+1  A: 

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.

Chris Pebble
A: 

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

i am actually using urlrewriter.NET and even after applying what the article says, i have no luck getting it to work
zaladane
+1  A: 

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

Izabela