تخصيص صفحة "الصفحة غير موجودة"

Hi community!

I am trying to customize the “Page doesn’t exist” page. It currently shows the words " Oops! That page doesn’t exist or is private.". However, I would like to replace this with an image instead. Is there any way to do this? I was thinking of using plugin-outlets but there does not seem to be one for it. Thanks in advance.

4 إعجابات

Maybe we should have a plugin outlet for this @eviltrout?

4 إعجابات

Unfortunately it’s not simple since there are two versions of that page. One is generated server side and one is generated client side, depending on the error. We could add an outlet to the client side page but you wouldn’t always see it. Also I should note that page is used for all exceptions so you’d have to differentiate between a network error, a 500 error, a 404, etc.

4 إعجابات

فقط أردت التأكد، هل هناك أي طريقة لحل هذا حتى الآن؟ سنحب تعديل تلك الصفحة أيضًا إذا كان ذلك ممكنًا.

لم يتغير، آسف.

إعجاب واحد (1)

حسناً، أفهم. شكراً لك على الرد السريع.

تمكنت من تخصيص الرسالة باستخدام القليل من جافاسكريبت:

window.addEventListener("DOMContentLoaded", function(){
    document.querySelector('.page-not-found .title').innerHTML = "NEW MESSAGE HERE";
});

يستبدل البرنامج النصي عنصر HTML حيث يوجد “عذرًا! هذه الصفحة غير موجودة أو خاصة”. لم أجربه، ولكن من الناحية النظرية، يمكنك إضافة HTML لعرض صورة.

إعجابَين (2)