how to remove redirect virus?

Check your .htaccess file and look for anything suspicios there. Sometimes they hide the malware at the bottom or the middle of the file so you won't be able to see it right away when looking at it.

If it's not in your .htaccess file then chances are your index file has been injected with the redirect code. They usually encrypt that with base64, so check for anything that looks encrypted in there.

If you have shell access you can try grepping the following.
grep -Ri "base64" *
 
A little bit more info on your problem will help us solve your issue!
 
Back
Top Bottom