我在GoDaddy共享托管环境(Linux,PHP 7.1)中工作。我想在全局范围内自动添加一个文件,但我似乎无法使用.htaccess或php.ini文件。
我尝试过以下变化无济于事:
include_path = ".:/home/username/public_html"
auto_prepend_file = "./includes/autoload.php"
php_value include_path ".:/home/username/public_html"
php_value auto_prepend_file "./includes/autoload.php"
我做错了什么?
答案 0 :(得分:1)