这些配置有什么区别吗:
<Directory /var/www>
.....
</Directory>
和
<Directory /var/www/>
.....
</Directory>
答案1
否,应该没有区别,尽管应该将前者定义为首选,以符合 Apache 对此格式的记录偏好。对于其他指令(如 DocumentRoot 和 Location),它将要有所作为,因此您应该始终避免在 apache 配置中使用尾随斜杠。
这些配置有什么区别吗:
<Directory /var/www>
.....
</Directory>
和
<Directory /var/www/>
.....
</Directory>
否,应该没有区别,尽管应该将前者定义为首选,以符合 Apache 对此格式的记录偏好。对于其他指令(如 DocumentRoot 和 Location),它将要有所作为,因此您应该始终避免在 apache 配置中使用尾随斜杠。