Auf alle Fälle sicherstellen das Client-Seitig eine Weiter-/Umleitung ausgeführt wird.
<!DOCTYPE html >
<html>
<head>
<title>redirect to me</title>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data: " />
<link rel="canonical" href="https://www.gocher.me" />
<noscript>
<meta http-equiv="refresh" content="0;URL=https://www.gocher.me" />
</noscript>
<script>
try {
// behavior like an HTTP redirect
window.location.replace("https://www.gocher.me");
} catch (e) {
// behavior like clicking on a link
window.location.href = "https://www.gocher.me";
}
</script>
</head>
<body>
<p><a href="https://www.gocher.me">click here if you are not redirected to my Site!</a></p>
</body>
</html>