我已經試過這如何獲得
<?php
print_r(apache_get_modules());
?>
,並得到這個
Fatal error: Call to undefined function apache_get_modules() in
用php的Apache模塊列表爲什麼錯誤的內置功能,以及如何獲得模塊
名單我已經試過這如何獲得
<?php
print_r(apache_get_modules());
?>
,並得到這個
Fatal error: Call to undefined function apache_get_modules() in
用php的Apache模塊列表爲什麼錯誤的內置功能,以及如何獲得模塊
名單manual page包含有關支持apache_get_modules()
的PHP和Apache版本的詳細信息。
您必須運行PHP> = 4.3.2並使用Apache 2處理程序API或PHP> = 5.0和Apache 1或Apache 2過濾器API。
以及如何檢查mod_rewrite是否啓用CGI? – Daric
@Daric檢查下面的答案,檢查CGI下是否啓用了mod_rewrite –
你正在運行PHP作爲Apache模塊? – KingCrunch
@King:哦,它被安裝爲CGI。你知道如何檢查mod_rewrite是否啓用了CGI? – Daric