Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经安装了 xdebug,我可以在 phpinfo() 中看到它已安装(但它已关闭)。
但是,我不想为整个服务器/apache2 启用它,我只想为一个虚拟主机启用它。
我怎样才能做到这一点?
php.ini您可以使用值设置 xdebug off:
php.ini
off
zend_extension=/usr/lib/php/modules/xdebug.so xdebug.remote_enable off xdebug.remote_port 9000 xdebug.idekey PHP-XDEBUG
.htaccess并仅使用指令打开:
.htaccess
php_flag xdebug.remote_enable on