Enabling mod_rewrite in Apache webserver 1.X is surprisingly easy because it is included in the installation, and just disabled with a # in front of its module configuration lines in httpd.conf
So all you have to do to enable mod_rewrite is :
- Open httpd.conf
- Remove the # from the line #LoadModule rewrite_module
- Remove the # from the line #AddModule mod_rewrite.c
- Restart the Apache process
One Reply to “Enabling mod_rewrite in Apache webserver”