我已经安装了xdebug,我可以在phpinfo()中看到它已安装(但它已关闭)。
但是,我不想为整个服务器/ apache2启用它,我只想为一个虚拟主机启用它。
我该怎么做?
答案 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