確定Apache 和IIS 的PHP 中的Mod_Rewrite 狀態
驗證mod_rewrite 的存在(URL 重寫的重要組件)對於基於重寫的重要組件Web 應用程式。本文探討了使用 PHP 在 Apache 和 IIS 環境中檢查 mod_rewrite 啟用情況的方法。
Apache 環境
在 Apache 中,您可以使用 apache_get_modules() 函數mod_php 來擷取所有啟用模組的陣列。只要使用以下程式碼驗證「mod_rewrite」是否存在:
<?php if (in_array('mod_rewrite', apache_get_modules())) { // Mod_rewrite is enabled } else { // Mod_rewrite is not enabled } ?>
IIS 環境
透過PHP 決定IIS 中的mod_rewrite 狀態需要更複雜的方法,因為缺乏與apache_get_modules() 等效的標準。建議的解決方案包括執行以下命令:
<?php if (strpos(shell_exec('/usr/local/apache/bin/apachectl -l'), 'mod_rewrite') !== false) { // Mod_rewrite is enabled } else { // Mod_rewrite is not enabled } ?>
此方法利用 shell 命令來查詢 Apache 配置並檢查輸出中是否存在「mod_rewrite」。
以上是如何使用 PHP 檢查 Apache 和 IIS 中是否啟用了 mod_rewrite?的詳細內容。更多資訊請關注PHP中文網其他相關文章!