我要做的是为我的网站设置一个开发子域。
结构本质上是这样的:
/vitals.php <-- Contains the actual info (passwords, db info, etc...)
/public_html/vitals.php <-- contains only require("../vitals.php")
/public_html/index.php
/public_html/dev/index.php
public_html 中的索引文件有require("../vitals.php")
. 我希望能够dev/index.php
通过在公共 html 中添加额外的 vitals.php 来在文件中使用同一行,而公共 html 又将包含vital.php
public_html 的外部。
问题是……它不起作用。想法?