How to customize the Page Not Found (404) page

Still need help?

The Atlassian Community is here for you.

Ask the community



The content on this page includes steps to customize or extend Atlassian software (adding/changing CSS rules, HTML, JavaScript, etc.). Per the Atlassian Support Offerings, support does not include customizations made to Atlassian products. Be aware that this material is provided for your information only and using it is done so at your risk.

If you have any questions about this or any customization, please ask the community at Atlassian Answers or consider working with an Atlassian Solution Partner.


Purpose

To customize the 404 error page served by Fisheye/Crucible, in order to better fit the design of your site.


Solution 

  1. Navigate to the following path on Fisheye/Crucible Server.

    <fisheye-install>/content/WEB-INF/web.xml
  2. Edit the <error-page> tag and modify it as follows:

    <error-page>
     <error-code>404</error-code>
     <location>/404.html</location>
    </error-page>
  3. Create a new file 404.html under <fisheye-install>/content/. We can use any HTML script like following to modify the custom page.

    <!DOCTYPE html>
    <html>
    <body>
    
    <p>Modified 404 page</p>
    
    </body>
    </html>

    Restart Fisheye/Crucible.





Last modified on Mar 16, 2020

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.