如何让Apache的路径从root开始

时间:2015-08-23 14:29:47

标签: apache

而不是写" C:/Tomato/root/t.txt" (root是网站的根源),我怎么写像" /t.txt"或" rootvar +' t.txt'"在配置文件?

我无法在任何地方找到它。谢谢。

1 个答案:

答案 0 :(得分:0)

我从未在Windows上使用过Apache,但我猜测配置类似。您需要在配置文件中更改一两件事: -

DocumentRoot "C:/Tomato/root"

还应该有一个与该路径匹配的条目: -

<Directory "C:/Tomato/root">
 # Lots of stuff here ...
</Directory>

希望这有帮助