自定义Apache HTTP服务器的工作目录

在安装 Apache 时,系统会给定一个缺省的文件根目录作为服务器指定的目录。

如果你觉得将网页存在这个缺省目录不方便,觉得应该另外设个目录作为 Apache 文件根目录,你可以修改 Apache 的配置文件 httpd.conf 里有关文件根目录的设置。

Apache HTTP Server 的缺省文件根目录 (DocumentRoot) 是:DocumentRoot "C:/AppServ/www"

修改 Apache 文件根目录 (DocumentRoot) 的操作如下:

1. 为避免修改失误,请先备份你的 Apache 配置文件 httpd.conf,该配置文件的路径是:

“C:/AppServ/Apache xx/conf/httpd.conf”("Apache xx"后面的"xx"代表你所安装的Apache版本号);

2. 打开 httpd.conf 文件,找到 DocumentRoot 为开头的那一行,

将DocumentRoot "C:/AppServ/www" 改成新的 DocumentRoot 路径,

比如你新的路径为 "D:/PHP",就改成DocumentRoot "D:/PHP";

3. 然后找到 httpd.conf 文件中的如下内容

将其中的路径改成你新设的文件根目录,比如:

4. 保存配置文件httpd.conf;

5. 修改配置文件之后,必须重启AppServ服务才能生效(开始菜单中,AppServ-->Apache Restart)。

你可能感兴趣的:(自定义Apache HTTP服务器的工作目录)