vote up 2 vote down star
2

Is the best place set the 404 error page for SharePoint within the web.config customError section or is there a configuration setting on the site collection/ web application?

flag

2 Answers

vote up 3 vote down check

Hi,

please have a read at this blog

pasted:

  1. In your MOSS server, make a copy of %systemdrive%\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\LAYOUTS\1033\sps404.html and call it my404.html

  2. Create a Virtual Directory in IIS under your MOSS root web application. For example /errors

  3. Create your own redirect aspx page, for example /errors/my404redirect.aspx and code your redirect logic in there. This is a normal asp.net page.
  4. In my404.html, make the following change: STSNavigate("/errors/my404redirect.aspx?oldUrl=" + requestedUrl);
  5. Create a Console Application and insert the following code and run it in MOSS server

    System.Uri webApplicationUri = new Uri(http://MyMOSSServer/); SPWebApplication webApplication = SPWebApplication.Lookup(webApplicationUri); webApplication.FileNotFoundPage = "my404.html"; webApplication.Update();

  6. Now when you browse to a page that doesn't exist, you should expect to be brought to the redirected page.

link|flag
A note of caution here: search bots that are following old urls won't get to your fancy aspx page (where you presumably redirect if you have a map of old/bad urls) since bots don't tend to execute javascript. I'm still working on a solution for this on my site. – Jon Dewees Feb 18 at 21:33
why would you want search bots to index an error page? – Brian Liang Apr 2 at 14:44
Brian, the error page helps for SEO results, when a page is not found: you still give something to the bot to continue moving on, and its best if you give something that indexes well to the rest of your site – Ric Tokyo Apr 3 at 3:47
Should "MyMOSSServer/"; be the name of the server or the name of the web site i created in sharepoint? – Rob Nov 6 at 15:06
vote up -1 vote down

Can you please elaborate more on how to do the following step

3.Create your own redirect aspx page, for example /errors/my404redirect.aspx and code your redirect logic in there. This is a normal asp.net page.

link|flag
This may have been voted down but I think it’s a valid point. Is it just an aspx page on it's own, where does the code behind go? I’ve placed my assembley in the GAC but I’m getting an error when trying to access the page. – Rob Nov 6 at 14:56

Your Answer

Get an OpenID
or

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