Disabling mod_security in Fedora with SELinux

If mod_security is interfering too much with your web applications, you can disable it easily.
1. Create an .htaccess file in the directory of the script that is having trouble.
2. To disable mod_security completely, add the following line to the .haccess file.
SecFilterEngine Off
To disable HTTP POST scanning only, use the following instead:
SecFilterScanPOST Off
3. Save the file [...]