GoDaddy include_path和auto_prepend_file

时间:2018-01-24 01:28:42

标签: php apache .htaccess include-path

我在GoDaddy共享托管环境(Linux,PHP 7.1)中工作。我想在全局范围内自动添加一个文件,但我似乎无法使用.htaccess或php.ini文件。

我尝试过以下变化无济于事:

的php.ini

include_path = ".:/home/username/public_html"
auto_prepend_file = "./includes/autoload.php"

的.htaccess

php_value include_path ".:/home/username/public_html"
php_value auto_prepend_file "./includes/autoload.php"

我做错了什么?

1 个答案:

答案 0 :(得分:1)

我能够通过使用.user.ini文件来实现这一目标:

  

自PHP 5.3.0起,PHP包括对a上的配置INI文件的支持   每个目录。

我还发现GoDaddy的this documentation很有用。