Windows 7에서 XAMPP 설치가 실행 중입니다.
httpd-vhosts.conf에 VirtualHost를 추가하자마자 '일반' 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
.
누구든지 도와 줄 수 있니?
편집 : 또한 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>