如何在没有apache_get_modules()的情况下检测mod_rewrite?

时间:2009-08-19 16:31:53

标签: php apache mod-rewrite

当函数mod_rewrite不可用时,是否可以在PHP中检测apache_get_modules()

1 个答案:

答案 0 :(得分:8)

您可以分析phpinfo()的输出:

ob_start();
phpinfo(INFO_MODULES);
$contents = ob_get_contents();
ob_end_clean();
var_dump(strpos($contents, 'mod_rewrite') !== false);