A artmonger New member Joined Oct 23, 2012 Messages 1 Oct 23, 2012 #1 How can I ensure that I have mod_rewrite enabled in Apache? Where do I check/set this? Thanks.
Suurbier Verified User Joined Apr 23, 2007 Messages 223 Oct 24, 2012 #2 Code: <?php phpinfo(); ?> Crtl+F mod_rewrite
zEitEr Super Moderator Joined Apr 11, 2005 Messages 15,395 Location www.poralix.com Oct 24, 2012 #3 artmonger said: How can I ensure that I have mod_rewrite enabled in Apache? Where do I check/set this? Thanks. Click to expand... Hello, Suurbier is right if you're using apache+php with mod_php, otherwise it will show no mod_rewrite in phpinfo(). So you'll need to login via SSH as root and run this command: Code: # apachectl -M 2>&1 | grep rewrite --color it should show: Code: rewrite_module (static)
artmonger said: How can I ensure that I have mod_rewrite enabled in Apache? Where do I check/set this? Thanks. Click to expand... Hello, Suurbier is right if you're using apache+php with mod_php, otherwise it will show no mod_rewrite in phpinfo(). So you'll need to login via SSH as root and run this command: Code: # apachectl -M 2>&1 | grep rewrite --color it should show: Code: rewrite_module (static)