因此,我正在尝试使用.htaccess的文件将PHP文件放在特定目录中的所有PHP文件之前。
php_value auto_prepend_file "/path/to/file.php"
但是,这还会将该文件添加到子目录(位于.htaccess所在的目录中)的所有PHP文件中。
/public_html
.htaccess // which prepends to all the files in public_html
some_file.php
another_file.php
/includes
// Nothing should be prepended here
file_to_prepend.php
/subdirectory
// I do not want the file to be prepended here, I want to prepend other files
file1.php
是否可以让.htaccess仅自动将文件自动添加到 current 目录中?
注意:我不想使用
php_value auto_prepend_file none
在子目录中,因为:
这需要我将其添加到所有htaccesses子目录中
我想在子目录中添加其他文件。
任何帮助将不胜感激。 谢谢!