Question

Is it possible to detect mod_rewrite in PHP when function apache_get_modules() is not available?

Was it helpful?

Solution

You could analyze the output of phpinfo():

ob_start();
phpinfo(INFO_MODULES);
$contents = ob_get_contents();
ob_end_clean();
var_dump(strpos($contents, 'mod_rewrite') !== false);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top