mod_rewrite enable in apache

artmonger

New member
Joined
Oct 23, 2012
Messages
1
How can I ensure that I have mod_rewrite enabled in Apache? Where do I check/set this?

Thanks.
 
How can I ensure that I have mod_rewrite enabled in Apache? Where do I check/set this?

Thanks.

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)
 
Back
Top