Some people have been wondering how I did the random selection of 404 page not found messages that are used on this web site.
So, here is the nice little PHP script that I use here to redirect randomly to one of the right pages:
-
-
<?PHP
-
"/404/404-01.php",
-
"/404/404-02.php",
-
"/404/404-03.php",
-
"/404/404-04.php",
-
"/404/404-05.php",
-
"/404/404-06.php",
-
/* "/404/404-07.php", */
-
"/404/404-08.php",
-
"/404/404-09.php",
-
"/404/404-10.php",
-
"/404/404-11.php",
-
"/404/404-12.php",
-
"/404/404-13.php",
-
"/404/404-14.php",
-
"/404/404-15.php",
-
"/404/404-16.php",
-
"/404/404-17.php",
-
"/404/404-18.php",
-
"/404/404-19.php",
-
"/404/404-20.php",
-
"/404/404-21.php",
-
"/404/404-22.php",
-
"/404/404-23.php",
-
"/404/404-00.php"
-
);
-
exit;
-
?>
You can re-use it on your own web site if you want to. It’s free.
|
Other similar articles:
|




June 16th, 2007 at 00:35
A couple of remarks:
When you redirect an error page, don’t forget to set the error status in your page, otherwise the error is lost. You can add:
header(”Status: 404 Not Found”);
Why don’t you look for all files in the 404 directory and choose one of them?
$dir = “somewhere/404/”;
if (is_dir($dir)) {
if ($dth = opendir($dir)) {
while (($file = readdir($dth)) !== false) {
if (preg_match(’/^404-.*\.php$/’, $file) == 1) {
$address_list[] = $dir . $file;
}
}
}
}
June 16th, 2007 at 10:43
That’s right, but did you notice that some (one) of the pages are not displayed? Actually, there are authorizations and copyright issues that limited the number of pages I accepted to go to the user. And this was changing pretty often (there is still one page not displayed because of this).
Actually, your solution is nicer for sure.