htaccess question
-
My htaccess file looks fishy. I removed a malicious files called default.php and there is a reference to it in my htaccess. Do you see anything suspicious here?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*2e30f.*|^tobeornottobe$) /ikcheck.php?q=$1 [L]
RewriteRule ^ikcheck.php$ – [L]
</IfModule>
# Use PHP5.4 Single php.ini as defaultAddHandler application/x-httpd-php54s .php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^[a-z0-9]{1,4}[.](htm|pdf|jar) default.php [L]
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
- The topic ‘htaccess question’ is closed to new replies.