I'm working on some error handling in my MVC app, and I'd like to change asperrorpath to something that doesn't give away the fact that I'm using .NET... something like path

Can anyone give me some direction on how to change that out?

link|improve this question

Hello rockinthesixstring. Have you found the answer to this yet? I'd like to do this too! Anyone? Anyone? +1 – Funka Jun 26 '10 at 2:12
Sorry, no answer for me yet. – Chase Florell Jun 26 '10 at 2:42
Sorry, you're fooling yourself i you think it's not trivial to know if a site is running asp.net. asp.net and mvc both have very strong telltale signs thatdoesn't take much effort to figure out, and this is built in to the way that requests are handled so there is no configuration or other change you can make that will hide it – Mystere Man Mar 18 at 19:48
feedback

3 Answers

my wprk around is using

route.MapRoute("NotFound", "{*url}", new {controller = "Home", action = "NotFound"})

At the bottom most, which I have NotFound action in HomeController. It will simply catch all other urls.

link|improve this answer
nope. I don't care about the URL (I already have that taken care of)... but the querystring for the returnUrl is currently ?asperrorpath=http... whereby everyone knows I'm using .net (not saying it's a bad thing). I'd just like to change the item to ?go=http.... Which I've already done. I'll post my solution later in the day. – Chase Florell Mar 10 '11 at 16:56
Yeah I found so many trick, this is what I think the best. If using this way, you need to turn On (or RemoteOnly) customError but don't define any 404 redirection etc in the web.config, the "{*url}" will catch it. I am using MVC 3. Not sure about previous version. I will never get the ?asperrorpath= – CallMeLaNN Mar 11 '11 at 16:27
feedback

The are many ways you can solve your problem. It depends what you want.

  1. You can edit section in your web.config And write default link for redirecting on error and also specify different links for different error like <error statusCode="403" redirect="NoAccess.htm" />
  2. You can use HandleError attribute for your Controller/Actions. You can read about it here.
link|improve this answer
feedback

Add redirectMode="ResponseRewrite" to the customErrors section. That worked for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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