Welcome Guest, Not a member yet? Register   Sign In
.htaccess file not redirecting anymore. Possible reasons?
#4

[eluser]Maglok[/eluser]
It's not just the RewriteRule, it's a package of stuff that you enable with 'RewriteEngine on'. It's the mod_rewrite apache module.

A quick google says this php might display apache modules:

Code:
if (function_exists('apache_get_modules')) {
  $modules = apache_get_modules();
  $mod_rewrite = in_array('mod_rewrite', $modules);
} else {
  $mod_rewrite =  getenv('HTTP_MOD_REWRITE')=='On' ? true : false ;
}

Probably a buncha ways, but it is the 'mod_rewrite' module for sure.


Messages In This Thread
.htaccess file not redirecting anymore. Possible reasons? - by El Forum - 08-25-2010, 02:24 AM



Theme © iAndrew 2016 - Forum software by © MyBB