XAMPP / Windows - 如何为每个项目加载自定义php.ini

时间:2013-10-29 08:07:10

标签: php xampp ini

我有以下环境:

  • Windows上的XAMPP
  • php由mod_php5处理

有人可以告诉我如何为每个项目加载自定义php.ini吗?因为目前它只从xamp setup的主要php.ini加载。

非常感谢。

1 个答案:

答案 0 :(得分:1)

您可以为每个虚拟主机设置PHPINIDir。

添加到您的apache配置:

<VirtualHost *:80>
DocumentRoot c:\www\example1
ServerName www.example.com
PHPINIDir c:\www\example1

# Other directives here
</VirtualHost>

对于处理多个虚拟主机,你应该有不同的主机名(你可以使用etc / hosts)或不同的ip-adresses。