首頁 >後端開發 >php教程 >簡述php如何偵測apache mod_rewrite模組是否安裝

簡述php如何偵測apache mod_rewrite模組是否安裝

墨辰丷
墨辰丷原創
2018-06-12 15:19:342217瀏覽

這篇文章主要介紹了php檢測apache mod_rewrite模組是否安裝的方法,透過對apache mod_rewrite模組相關函數的檢測實現該檢測功能,需要的朋友可以參考下

本文實例講述了php偵測apache mod_rewrite模組是否安裝的方法。

具體實作方法如下:

/**
 * @title Check if Apache's mod_rewrite is installed.
 * 
 * @author Pierre-Henry Soria <ph7software@gmail.com>
 * @copyright (c) 2013, Pierre-Henry Soria. All Rights Reserved.
 * @return boolean
 */
function isRewriteMod()
{
  if (function_exists(&#39;apache_get_modules&#39;))
  {
    $aMods = apache_get_modules();
    $bIsRewrite = in_array(&#39;mod_rewrite&#39;, $aMods);
  }
  else
  {
    $bIsRewrite = (strtolower(getenv(&#39;HTTP_MOD_REWRITE&#39;)) == &#39;on&#39;);
  }
  return $bIsRewrite;
}

使用方法:

if (!isRewriteMod()) exit(&#39;Please install Apache mod_rewrite module.&#39;);

總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。

相關推薦:

php操作資料庫判斷表是否存在的方法

php使用curl連接網站及取得資訊的方法

PHP實作簡單的GET、POST、Cookie、Session等功能

以上是簡述php如何偵測apache mod_rewrite模組是否安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn