Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 560711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:22:21+00:00 2026-05-13T12:22:21+00:00

I know how to redirect pages with Rewrite. But when there is a 404

  • 0

I know how to redirect pages with Rewrite. But when there is a 404 page how would i display my own custom 404 page (i know i can rewrite it) and say this is in fact a 404 and not just a plain rewritten page?

-edit-

How i can SET the error code instead of asking the server? if the user goes to /user/invaliduser/ i would like to send a 403 or 404 but my rewrite would send it to a valid page to display user info so i would like to know how to say doesnt exist rather then empty fields in a page.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T12:22:21+00:00Added an answer on May 13, 2026 at 12:22 pm

    To be more flexible then strict 404.html follow my example.
    In Global.asax.cs override:

    public void Application_Error(Object sender, EventArgs e)
    {
            if (HttpContext.Current.Request.IsLocal) return;
    
            Exception ex = Server.GetLastError();
            HttpException httpEx = ex as HttpException;
            string errorUrl;
            if (httpEx != null && httpEx.GetHttpCode() == 403)
                errorUrl = "~/error/403.aspx";
            else if (httpEx != null && httpEx.GetHttpCode() == 404)
                errorUrl = "~/error/404.aspx";
            else
                errorUrl = "~/error/500.aspx";
            Server.Transfer(errorUrl);
    }
    

    For example my 404.aspx contains form to send feedback, 403.aspx – exposes more interesting items for user, and 500 sends alert to Admin.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know how I can redirect to a certain page (during
I know you can redirect subdomains to a different server, but can you do
I know there have been a few threads on this before, but I have
Does anybody know how to redirect parent page from an ajax call? I made
I want to know whether 301 redirect always preserve referrer. I make a page
I know I can redirect awk's print output to another file from within a
I know that there're stdout/in/err for a program and I want to redirect a
I want to know the difference between : $this->forward(module, action); And $this->redirect(module/action); My first
I want to redirect every archive pages on my blog to new directories but
What I basically want to do is redirect any 404 requests to /404/ but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.