最佳答案
我在 Windows7上安装了 XAMPP。
一旦我将一个 VirtualHost 添加到 httpd-vhosts. conf 中,“常规”http://localhost
和新的 dropbox.local
都不能正常工作。
下面是我在 httpd-vhosts.conf
中加入的内容:
<VirtualHost *:80>
ServerAdmin postmaster@dummy-host.localhost
DocumentRoot "E:/Documenten/Dropbox/Dropbox/dummy-htdocs"
ServerName dropbox.local
ServerAlias www.dropbox.local
ErrorLog "logs/dropbox.local-error.log"
CustomLog "logs/dropbox.local-access.log" combined
</VirtualHost>
所以我查了我的 dropbox.local-error.log
,看看有没有什么信息:
[Thu Feb 02 10:41:57 2012] [error] [client 127.0.0.1] client denied by server configuration: E:/Documenten/Dropbox/Dropbox/dummy-htdocs/
这个错误似乎可以通过添加
<directory "E:/Documenten/Dropbox/Dropbox/dummy-htdocs">
Allow from all
</directory>
但是现在我在 dropbox.local-error.log
中得到了这个错误:
[Thu Feb 02 10:45:56 2012] [error] [client ::1] Directory index forbidden by Options directive: E:/Documenten/Dropbox/Dropbox/dummy-htdocs/
此外,当我尝试访问 http://localhost
时,在常规的 error.log
中不会得到任何错误,尽管在我尝试访问它时会得到 error 403
。
有人能帮帮我吗... 这快把我逼疯了: S
编辑:
同样在 httpd.conf
中也有以下内容(我已经看到它被多次提及,所以在任何人说之前) :
<IfModule dir_module>
DirectoryIndex index.php index.pl index.cgi index.asp index.shtml index.html index.htm \
default.php default.pl default.cgi default.asp default.shtml default.html default.htm \
home.php home.pl home.cgi home.asp home.shtml home.html home.htm
</IfModule>