Reply To: 1-services.ru/

Home Forums Support Forum 1-services.ru/ Reply To: 1-services.ru/

#639

Eli Scheetz
Member

Hey Charlie,

I fixed it! the redirect turned out to be in the .htaccess file in your user’s root directory (up one level from your web’s root directory). I expanded the search range of my plugin to look outside the public_html directory and, bang!, it wound it right away.
Now that the malicious redirect is out of the way you still are getting 404 errors on all pages except the home page. This is because you are using a permalink structure that requires the following code in the .htaccess file in the public_html directory but it looks like “Better WP Security” has locked down that file (maybe a little too tight). You’ll need to use FTP to put this code back into that file:

<IfModule mod_rewrite.c>

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Let me know if I can be of any further assistance.