November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
The BVN 404 handler is currently a bit tied down to one 404 page (but that might change sooner rather than later).
How about using status code 410 for your expired content (scenario 2), instead of 404?
http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#410
Thank you for your suggestion!
Unfortunately, the client requested the 404 response code on the expired content page, but I might try to convince them into using 410 instead.
I thought of another alternative, which would be to use the same 404-page in both scenarios and then programmatically control the layout of the page (through show/hide placeholders).
Hi
I am using the EPiServer 404-module (https://www.coderesort.com/p/epicode/wiki/404Handler) and it seems to be working correctly.
However, I want to use two different 404-pages for the following scenarios:
1) Page not found (standard 404 scenario)
2) Page used to exist, but is no longer available
In my 2) scenario I have the following code in PageLoad:
if (!PageEditing.PageIsInEditMode)
{
this.Page.Response.StatusCode = 404;
}
but since the page recieves the 404-Statuscode, the 404-module takes over and I end up on my standard 404-page, 1).
Is there any way of having multiple 404-pages?
Best regards
Jesper