-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 (docs): add custom 404 page and update configuration for better use… (
#2553) …r experience Introduce a custom 404 page to guide users when they encounter a missing page. This change enhances user experience by providing helpful navigation instructions instead of a generic error message. Additionally, a new configuration file is added to ensure the custom 404 page is served correctly, improving the overall usability of the documentation site.
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: 404 | Azure DevOps Migration Tools | ||
layout: page | ||
pageType: index | ||
template: index-template.md | ||
toc: false | ||
pageStatus: published | ||
discussionId: | ||
--- | ||
|
||
|
||
The page you are looking for may have been moved or deleted! Try to find what you want in the left navigation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"responseOverrides": { | ||
"404": { | ||
"rewrite": "/404" | ||
} | ||
} | ||
} |