Apache 和IIS 的PHP 中的Mod_Rewrite 偵測
Mod_Rewrite 是一個強大的URL 重寫工具,可以在Apache 。然而,確定它是否在 PHP 中啟用會帶來挑戰,尤其是對於 IIS。
Apache 偵測
如果使用 mod_php,可以利用 apache_get_modules() 函式來取得啟用模組的清單。隨後,檢查 mod_rewrite 涉及:
in_array('mod_rewrite', apache_get_modules());
IIS 偵測
CGI 通常會使 IIS 上偵測 mod_rewrite 的過程變得複雜。儘管如此,還是可以使用 shell 指令:
strpos(shell_exec('/usr/local/apache/bin/apachectl -l'), 'mod_rewrite') !== false
如果此條件計算為 true,則在 IIS 上啟用 mod_rewrite。
以上是如何在 Apache 和 IIS 的 PHP 中檢測 mod_Rewrite?的詳細內容。更多資訊請關注PHP中文網其他相關文章!