Verzeichnisse können nur mit abschließendem / aufgerufen werden
Ben Romberg
- webserver
Hallo.
Ich habe ein Problem mit meinem neuen Apache-Webserver 1.3. Wenn man ein Verzeichnisnamen ohne abschließenden / angibt (z.B. http://212.172.96.34/sub/utplanet) wird ein "Die Seite kann nicht angezeigt werden."-Fehler zurückgegeben. Nur mit abschließendem / (z.B. http://212.172.96.34/sub/utplanet/) wird die index-Datei des Verzeichnisses angezeigt.
Wer kann mir helfen?
PS: Die auf 212.172.96.34/sub/utplanet/ zurückgegebene Seite ist nur eine Testseite ;]
Hallo.
Ich habe ein Problem mit meinem neuen Apache-Webserver 1.3. Wenn man ein Verzeichnisnamen ohne abschließenden / angibt (z.B. http://212.172.96.34/sub/utplanet)
RTFM:
Aus der Apache FAQ http://www.apache.org/docs/misc/FAQ.html#set-servername
----
Why does accessing directories only work when I include the trailing "/" (e.g., http://foo.domain.com/~user/)
but not when I omit it (e.g., http://foo.domain.com/~user)?
When you access a directory without a trailing "/", Apache needs to send what is called a redirect to the client to tell it to add the trailing slash. If it did not do so, relative URLs would not work properly. When it sends the redirect, it needs to know the name of the server so that it can include it in the redirect. There are two ways for Apache to find this out; either it can guess, or you can tell it. If your DNS is configured correctly, it can normally guess without any problems. If it is not, however, then you need to tell it.
Add a ServerName directive to the config file to tell it what the domain name of the server is.
----
lg
Ludwig