在哪个目录中我应该保留我的工作区或项目

时间:2011-03-25 06:29:42

标签: php

我在我的机器上安装了XAMPP(Windows XP操作系统)。我将Eclipse作为IDE。 现在我的问题是,我应该在哪个目录中保留我的工作区(或项目)。 我是否应该保持在“C:\ xampp \ php \ www”或“C:\ xampp \ htdocs”下的路径。

2 个答案:

答案 0 :(得分:1)

您需要更改c:\ xampp \ apache \ conf \ httpd.conf中的DocumentRoot值

DocumentRoot "C:\xampp\htdocs"

DocumentRoot "E:/MyProject/Source/Admin"

并配置权限。

<Directory "E:/MyProject/Source/Admin">
        Options +Indexes FollowSymLinks +ExecCGI
        AllowOverride AuthConfig FileInfo
        Order allow,deny
        Allow from all
</Directory>

然后重启apache服务器(在xampp控制面板中)。所以当你访问http://localhost/时,它会执行E:/ MyProject / Source / Admin

下的文件

了解更多信息。 http://httpd.apache.org/docs/2.0/mod/core.html#documentroot http://www.apachefriends.org/en/xampp-windows.html#529

答案 1 :(得分:0)

查看XAMP常见问题解答(引用)的Where I change the start page?部分

  

DocumentRoot文件夹是   "\xampp\htdocs"
有   索引网站(index.php)真实的   开始后加载的页面   执行"http://localhost/"

所以,我会说,在你的情况下,你必须在C:\xampp\htdocs工作。


当然,您可以通过修改Apache的配置和/或创建新的VirtualHost来改变它。