<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hallo,<br>
If you type <a class="moz-txt-link-freetext" href="http://www.yourdomain.somwhere/">http://www.yourdomain.somwhere/</a> (replace everywhere by the
www-adres you really want)<br>
Your provider either says: <br>
<ol>
<li>not allowed access</li>
<li>checks if there is index.htm or index.html and sends it<br>
</li>
<li>or index.php or index.php3 (or so) and executes and sends it<br>
</li>
</ol>
If your root directory is empty and you installed there PmWiki (with
pmwiki.php on the root)<br>
you could do this:<br>
===example index.php===<br>
<?php<br>
header("Location: <a class="moz-txt-link-freetext" href="http://www.yourdomaien.somewhere/pmwiki.php">http://www.yourdomaien.somewhere/pmwiki.php</a>"); /*
Browser umleiten */<br>
<br>
/* Stellen Sie sicher, dass der nachfolgende Code nicht ausgefuehrt
wird, wenn<br>
eine Umleitung stattfindet. */<br>
exit;<br>
?><br>
=== end example===<br>
And anlogue(extended path) if PmWiki lives in a subdirectory<br>
<br>
If index.php is not seen but index.html , a redirecting HTML
(index.html) is possible too!<br>
<br>
Greetings<br>
PKHG<br>
</body>
</html>