php检测apache mod_rewrite模块是否安装的方法_PHP教程
程序员文章站
2022-04-11 10:36:14
...
php检测apache mod_rewrite模块是否安装的方法
本文实例讲述了php检测apache mod_rewrite模块是否安装的方法。分享给大家供大家参考。具体实现方法如下:
/** * @title Check if Apache's mod_rewrite is installed. * * @author Pierre-Henry Soria* @copyright (c) 2013, Pierre-Henry Soria. All Rights Reserved. * @return boolean */ function isRewriteMod() { if (function_exists('apache_get_modules')) { $aMods = apache_get_modules(); $bIsRewrite = in_array('mod_rewrite', $aMods); } else { $bIsRewrite = (strtolower(getenv('HTTP_MOD_REWRITE')) == 'on'); } return $bIsRewrite; }
使用方法:
if (!isRewriteMod()) exit('Please install Apache mod_rewrite module.');
希望本文所述对大家的php程序设计有所帮助。
推荐阅读
-
以动态模块的方式安装apache2.0.44+PHP4.3.0_PHP教程
-
php校验表单检测字段是否为空的方法,校验字段_PHP教程
-
windows服务器中检测PHP SSL是否开启以及开启SSL的方法_PHP教程
-
PHP4.1.0在Windows下的Apache模块方式安装_PHP教程
-
php通过function_exists检测函数是否存在的方法,phpfunction_exists_PHP教程
-
以动态模块的方式安装apache2.0.44+PHP4.3.0_PHP教程
-
我按照安装步骤在UNIX上安装PHP到Apache的模块中,_PHP教程
-
php校验表单检测字段是否为空的方法_PHP教程
-
PHP4.1.0在Windows下的Apache模块方式安装_PHP教程
-
Windows 98下安装Apache(PWS) PHP4MySQLphpMyAdmin的方法_PHP教程