14 lines
161 B
PHP
14 lines
161 B
PHP
|
<?php
|
||
|
header("HTTP/1.0 403 Forbidden");
|
||
|
?>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>403 Forbidden</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<p>Directory access is forbidden.</p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|