How to customize the Page Not Found (404) page

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問



本ページの内容には、Atlassian ソフトウェアのカスタマイズや拡張 (CSS ルール、HTML、JavaScript の追加/変更など) を行う手順が含まれています。アトラシアン サポートの提供 の通り、Atlassia 製品に加えられたカスタマイズはサポートされません。この資料は情報提供のみを目的として提供されています。内容はお客様自身の責任でご利用ください。

本件またはカスタマイズに関するご質問は、コミュニティの Atlassian Answers で質問してください。または、アトラシアン ソリューション パートナー にご相談いただくことをご検討ください。


目的

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


ソリューション 

  1. Navigate to the following path on Crowd Server.

    <crowd-install>/crowd-webapp/WEB-INF/web.xml
  2. Add the following snippet at the bottom of the page, but before the </web-app> tag.

    <error-page>
     <error-code>404</error-code>
     <location>/404.html</location>
    </error-page>
  3. Create a new file 404.html under <crowd-install>/crowd-webapp/. 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 Crowd.


Even though the filename needs to be 404.html the content on it can be whatever you would like to place in there. Thus, if you wanted to have the page be blank with no content or redirect to something else, you could set up the document accordingly to render. If you wanted to return a specific HTTP error code, this is not possible in the platform to route 404 pages to return HTTP 500 requests.






最終更新日 2022 年 7 月 22 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.