Skip to content

Commit 61114aa

Browse files
committed
404 page added
1 parent 59339c0 commit 61114aa

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

404.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<!--[if IE]><![endif]-->
3+
<html>
4+
<head>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
7+
<title>Error 404</title>
8+
<meta name="viewport" content="width=device-width">
9+
<meta name="title" content="Error 404">
10+
<link rel="shortcut icon" href="../favicon.ico">
11+
<link rel="stylesheet" href="../styles/docfx.vendor.min.css">
12+
<link rel="stylesheet" href="../styles/docfx.css">
13+
<link rel="stylesheet" href="../styles/main.css">
14+
</head>
15+
<body>
16+
<h1>Not found (404)</h1>
17+
<p>The page you requested could not be found on this server.</p>
18+
<p><a href="https://docs.dataminer.services/connector/index.html">DataMiner Connector Documentation</a></p>
19+
</body>
20+
</html>

docfx.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,16 @@
1010
]
1111
}
1212
],
13-
"sitemap": {
13+
"sitemap": {
1414
"baseUrl": "https://docs.dataminer.services",
1515
"changefreq": "hourly"
1616
},
1717
"resource": [
1818
{
1919
"files": [
20-
"connector/images/**"
20+
"connector/images/**",
21+
"staticwebapp.config.json",
22+
"404.html"
2123
]
2224
}
2325
],

staticwebapp.config.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"responseOverrides": {
3+
"404": {
4+
"statusCode": 404,
5+
"rewrite": "/404.html"
6+
}
7+
}
8+
}

0 commit comments

Comments
 (0)