Hi bro,
My site is being proxy hijacked by some Chinese *******. They are trying to steal my traffic via this proxy.
http://tc2tc.mojolingo.xuite.net/m2m...www.mysite.com
I read some tips on other forums and they said as below:
Quote:
1. Add this to all of your headers:
<base href="http://www.yoursite.com/" />
and if you see an attempted hijack...
2. Block the site via .htaccess:
RewriteCond %{HTTP_REFERER} yourproblemproxy\.com
3. Block the IP address of the proxy
order allow,deny
deny from 11.22.33.44
allow from all
4. Do your research and file a spam report with Google.
http://www.google.com/contact/spamreport.html
|
My .htaccess file is:
Quote:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_REFERER} xuite\.net
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
|
How should I edit this file now? Pls help me.
Thanks a lot.