Issue
I' trying to install sweetcron and it needs mod_rewrite enabled. So, what's the easiest way to do this on Fedora 17?
Solution
Edit your httpd.conf
(by default it lies in /etc/httpd/conf/
)
Change option AllowOverride None
to AllowOverride All
After that restart your Apache server.
You can test your rewrite engine by some simple redirect:
Options +FollowSymLinks
RewriteEngine On
RewriteRule (.*) http://stackoverflow.com
Answered By - Edward Ruchevits