如何在 htaccess 中启用 MySQLi 扩展
如何在 htaccess 中启用 PHP 的 MySQLi 扩展?是否可以通过 htaccess 文件启用 PHP 扩展?
How to enable MySQLi extension for PHP in htaccess? Is it even possible to enable PHP extensions through htaccess file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Extension= 指令仅在中央
php.ini
中有效,无法在 .htaccess 文件中设置。最好的情况是您可以在 PHP 脚本中手动加载它:
仅适用于 PHP 5.2
The extension= directive is only valid in the central
php.ini
, it cannot be set from within .htaccess files.At best you could load it manually in your PHP script:
Only works until PHP 5.2
你不需要。
Mysqli 应该作为 PHP 模块安装并通过
php.ini
加载。假设如果您使用 debian 相关的 Linux 发行版,则可以通过发出 apt-get install php5-mysqli 来完成。
如果这不是一个选项,请阅读有关此模块的 PHP 文档并按照其中描述的步骤进行操作。
You don't.
Mysqli should be installed as a PHP-module and loaded through
php.ini
.Assuming you use a debian-related Linux distribution, this can be done by issuing
apt-get install php5-mysqli
.If this is not an option, please read the PHP documentation on this module and follow the steps described there.