10

我有 Eclipse IDE,并且在“C:/users/matt/documents/web/”中设置了一个工作区。我在文件夹 test“C:/users/matt/documents/web/test”中建立了一个名为 test 的项目。我已将 httpd 文件中的 Document root 更改为“C:/users/matt/documents/web/”,对于

我将“C:/users/matt/documents/web/test”放入浏览器,但我无法访问工作区中的文件,对于http://localhost/xampp/web/test/,http://localhost/web/test/http://localhost/test/.

我对服务器配置不了解,请帮助!

4

3 回答 3

20

c:\XAMPP\apache\conf\httpd.conf

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot C:/users/matt/documents/web/
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory C:/users/matt/documents/web/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

重启apache web服务器,然后...输入: http://localhost/test

检查过去的 问题

于 2012-04-14T21:15:13.410 回答
8

更改配置后重新启动您的网络服务器!

于 2012-04-14T21:14:22.117 回答
8

确保您也更改了 DocumentRoot your\path\to\apache\conf\extra\httpd-ssl.conf

于 2014-08-26T22:03:49.790 回答