ServerRoot,DocumentRoot和Directory之间的区别

Gai*_*ter 20 apache xampp

在玩Apache时,我搞砸了路径而没有制作备份httpd.config文件.

该文件位于C:\ xampp\apache\conf\httpd.config

我想将我的Web项目作为虚拟文件夹保存在D:驱动器上.这是当前的非工作状态.我该如何解决这个问题或恢复到xampp默认值?

ServerRoot "C:\xampp\apache"
DocumentRoot "D:\workspace"
<Directory "D:\workspace\AutionWebSite">
Run Code Online (Sandbox Code Playgroud)

aba*_*umg 20

  • ServerRoot = Web服务器可执行文件/目录的路径
  • DocumentRoot =服务器提供的文件的路径
  • <Directory>指令用于配置特定目录的设置.但是,<Directory>您的问题中的命令不完整.