-
Notifications
You must be signed in to change notification settings - Fork 15
/
404.html
44 lines (41 loc) · 1.41 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
title: Seite nicht gefunden (Fehler 404)
layout: page
---
<div class="notice mb-3 ring-1 ring-neutral-300 ring-offset-2">
<h1>Seite nicht gefunden <code>404</code></h1>
<p>
Hinweis: Auf dieser Seite wird nur noch die Straßenraumkarte thematsiert.
Alle
<a
href="https://parkraum.osm-verkehrswende.org/project-prototype-neukoelln/"
>Informationen zur Parkraumkarte wurden verschoben</a
>.
</p>
<script>
// We cannot use the regular redirect logic for PDFs.
// We can create a .pdf.html File that is served instead of the PDF, but
// Chrome tries to open that as a PDF which breaks.
// So instead we redirect the PDFs via this 404 page.
// Which is OK for the user, but a bad solution for SEO.
const redirects = [
{
from: "/parkraumkarte/blogpost_de.pdf",
to: "https://parkraum.osm-verkehrswende.org/project-prototype-neukoelln/blogpost_de.pdf",
},
{
from: "/parkraumkarte/blogpost_en.pdf",
to: "https://parkraum.osm-verkehrswende.org/project-prototype-neukoelln/blogpost_en.pdf",
},
{
from: "/parkraumkarte/methodenbericht-2021-03.pdf",
to: "https://parkraum.osm-verkehrswende.org/project-prototype-neukoelln/methodenbericht-2021-03.pdf",
},
];
redirects.forEach((r) => {
if (window.location.href.includes(r.from)) {
window.location = r.to;
}
});
</script>
</div>