amartin65
amartin65

Reputation: 72

ASP.NET Custom Error Pages

I have custom error pages setup in my ASP.Net 4.0 application. I would like to have it ignore 404s from images. I am getting error e-mails pertaining the 404 page getting image urls sent to it. Is that possible?

        <error redirect="http://***/404-Error/" statusCode="404" />

Thanks in advance

Upvotes: 0

Views: 247

Answers (1)

Tomek
Tomek

Reputation: 3279

Store images in separate directory and create in that directory web.config with different error handling routine.

Upvotes: 1

Related Questions