Change your httpd.conf(by default it is in /etc/httpd/conf/)
Change the setting AllowOverride NonetoAllowOverride All
After that, restart the Apache server.
You can test your rewrite mechanism with a simple simple redirect:
Options +FollowSymLinks
RewriteEngine On
RewriteRule (.*) http://stackoverflow.com
source
share