tags:

views:

69

answers:

3

hi

i read mod_rewrite module installed in my Apache server! to implement clean url. My apache server is 2.0. I can't see this module in my php info. How i install this module. Does any one tell me ?

+2  A: 

You may need to enable it using a2enmod rewrite followed by a restart or reload of Apache.

Paolo
A: 

Inside the httpd.conf file uncomment the line LoadModule rewrite_module modules/mod_rewrite.so (remove the pound '#' sign from in front of the line)

that is the basic way, usually new version of apache has uncomment this.

Nazmin
A: 

If your using php as CGI you won't see mod_rewrite in phpinfo().
(Or other apache modules for that matter.)

Bob Fanger