include-beveiliging
Code (php)
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
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
<?
// naam van de pagina, bv bestandsnaam = index.php
// dan is $pagina "index".
// Bij $pagina = "" invult, zal de pagina zichzelf niet
// kunnen openen, ook al is het niet ge-included
$pagina = "naam van de pagina";
$die = $_SERVER['PHP_SELF'];
$die = explode("/",$die);
// pagina met extensie .php
// $die[2] benodigt aanpassing, staat nu ingesteld op 1 map
// dus /bestandsfolder/bestandsnaam
$die = explode(".php",$die[2]);
if($die[0] != $pagina) {
echo '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL '.$_SERVER['PHP_SELF'].' was not found on this server.</p>
<hr />
'.$_SERVER['SERVER_SIGNATURE'].'</body></html>
';
exit();
}
?>
// naam van de pagina, bv bestandsnaam = index.php
// dan is $pagina "index".
// Bij $pagina = "" invult, zal de pagina zichzelf niet
// kunnen openen, ook al is het niet ge-included
$pagina = "naam van de pagina";
$die = $_SERVER['PHP_SELF'];
$die = explode("/",$die);
// pagina met extensie .php
// $die[2] benodigt aanpassing, staat nu ingesteld op 1 map
// dus /bestandsfolder/bestandsnaam
$die = explode(".php",$die[2]);
if($die[0] != $pagina) {
echo '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL '.$_SERVER['PHP_SELF'].' was not found on this server.</p>
<hr />
'.$_SERVER['SERVER_SIGNATURE'].'</body></html>
';
exit();
}
?>