Custom redirect for Forbidden 403

How to i custom page for Forbidden 403 error?
Current always redirect to /User/Login with hashtag #f=Forbidden
I use SS with MVC
Thanks. :slight_smile:

You can override ForbiddenRedirectUrl in you controller which is derived from ServiceStackController and set the URL you want to redirect to

if you need not change not only URL where to redirect to but also change the ending suffix #f=Forbidden... you can override ForbiddenErrorResult and write your own Forbidden URL generation.