php检测apache mod_rewrite模块是否安装的方法_PHP
程序员文章站
2022-04-09 10:34:51
...
本文实例讲述了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程序设计有所帮助。
上一篇: 提升Python程序运行效率的6个方法
推荐阅读
-
centos下yum搭建安装linux+apache+mysql+php环境的方法
-
PHP4.1.0在Windows下的Apache模块方式安装_PHP
-
php检测iis环境是否支持htaccess的方法_PHP
-
在Linux下安装PHP,APACHE,ORACLE,PERL的方法
-
快速自动安装php扩展模块的方法
-
以动态模块的方式安装apache2.0.44+PHP4.3.0_PHP
-
PHP5.3连接Oracle客户端及PDO_OCI模块的安装方法
-
PHP检测用户是否关闭浏览器的方法
-
php检测iis环境是否支持htaccess的方法
-
windows服务器中检测PHP SSL是否开启以及开启SSL的方法