这篇文章主要为大家详细介绍了php检测apache mod_rewrite模块是否安装入门实例,具有一定的参考价值,可以用来参考一下。
对php检测apache mod_rewrite模块是否安装感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* php检测apache mod_rewrite模块是否安装
*
* @param
* @arrange 512-笔记网: q1010.com
* @title Check if Apache's mod_rewrite is installed.
* @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;
}
/*** 来自四海网(www.q1010.com) ***/
使用方法
/**
* php检测apache mod_rewrite模块是否安装
*
* @param
* @arrange 512-笔记网: q1010.com
**/
if (!isRewriteMod()) exit('Please install Apache mod_rewrite module.');
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/1103-0.html
注:关于php检测apache mod_rewrite模块是否安装入门实例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:mod_rewrite
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。