det første sted at kikke, er nok her:
http://localhost/manual/Taget derfra:
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.
Hvis du IKKE bruger en / efter manual, ja, så kan siden ikke findes.
det er fordi i httpd.conf, er manual defineret så'n:
Alias /manual/ "C:/Apache/htdocs/manual/"
hvis nu det var så'n:
Alias /manual "C:/Apache/htdocs/manual"
så vil det virke med
http://localhost/manualHar du defineret servername i din hosts.sam fil, der ligger i windows-mappen?
Hvis ikke, så prøv det, og genstart comp'en. Måske det virker?
Og ellers, så er det vist noget med hvordan din DNS er sat op.