我已经在Windows 7上运行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>