10

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

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

我怎样才能做到这一点?

4

1 回答 1

15

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

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
于 2013-03-16T00:59:55.183 回答