如何使用xdebug仅调试一个虚拟主机?

时间:2013-03-15 02:27:22

标签: php apache profiling xdebug

我已经安装了xdebug,我可以在phpinfo()中看到它已安装(但它已关闭)。

但是,我不想为整个服务器/ apache2启用它,我只想为一个虚拟主机启用它。

我该怎么做?

1 个答案:

答案 0 :(得分:14)

您可以使用php.ini值设置off中的xdebug:

zend_extension=/usr/lib/php/modules/xdebug.so
xdebug.remote_enable off
xdebug.remote_port 9000
xdebug.idekey PHP-XDEBUG

并仅使用指令启用.htaccess

php_flag   xdebug.remote_enable on