diff --git a/src/Umbraco.Web/Routing/PublishedContentNotFoundHandler.cs b/src/Umbraco.Web/Routing/PublishedContentNotFoundHandler.cs index 0045cf33dc2d..a6e4f4b450c1 100644 --- a/src/Umbraco.Web/Routing/PublishedContentNotFoundHandler.cs +++ b/src/Umbraco.Web/Routing/PublishedContentNotFoundHandler.cs @@ -42,7 +42,7 @@ internal void WriteOutput(HttpContext context) response.Write(""); if (string.IsNullOrWhiteSpace(_message) == false) response.Write("

" + _message + "

"); - response.Write("

This page can be replaced with a custom 404. Check the documentation for \"custom 404\".

"); + response.Write("

This page can be replaced with a custom 404. Check the documentation for Custom 404 Error Pages.

"); response.Write("

This page is intentionally left ugly ;-)

"); response.Write(""); }