Apache2 security – mod_rewrite, mod_security
Enable mod_rewrite in Apache2 http://www.grosseosterhues.com/2011/07/enabling-mod-security-protection-in-apache2-on-ubuntu/ http://www.linuxlog.org/?p=135 a2enmod rewrite /etc/apache2/sites-available/000-default Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny allow from all /etc/init.d/apache2 restart .htaccess <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> Enable mod_evasive and mod_security in Apache2 aptitude install libapache-mod-security libapache2-mod-evasive a2enmod … Read more