How can we disable mod_security by using .htaccess file on Apache server?
I am using WordPress on my personal domain and posting a post whi
In .htaccess file at site root directory edit following line:
SecFilterEngine Off
SecFilterScanPOST Off
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Just keep the mod_security rules like SecFilterEngine and parts apart from each other. Its works for apache server