We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce32aaa commit daeb235Copy full SHA for daeb235
index-nofollow-404.php
@@ -0,0 +1,20 @@
1
+<?php
2
+header("X-Robots-Tag: noindex, nofollow", true);
3
+header('HTTP/1.0 404 Not Found', true, 404);
4
+
5
+echo '<!DOCTYPE html>
6
+<html lang="en">
7
+<head>
8
+ <meta charset="UTF-8">
9
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
10
+ <meta name="robots" content="noindex, nofollow" />
11
+ <title>404 Not found</title>
12
+</head>
13
+<body>
14
+ 404 Not found
15
+</body>
16
+</html>';
17
18
+// http_response_code(404);
19
+// header("HTTP/1.1 301 Moved Permanently");
20
+// header("Location: https://atomjoy.github.io");
0 commit comments