add redirect for recurring unexplained 404 hit

Google Analytics shows a recurring hit to "/1" with no referrer that's
causing a 404 error.  Let's make that error go away by redirecting it to
/latest/index.html

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder 2022-02-22 02:58:22 -08:00
parent 333d3d1c1e
commit b0a8572c52
1 changed files with 13 additions and 0 deletions

13
1/index.html Executable file
View File

@ -0,0 +1,13 @@
<html>
<head>
<title>ACRN Hypervisor documentation Redirect</title>
<meta http-equiv="refresh" content="0; URL=/latest/index.html">
<script>
window.location.href = "/latest/index.html"
</script>
</head>
<body>
<p>Please visit the <a href="/latest/">latest ACRN documentation</a></p>
</body>
</html>
EOF