I'm using wordpress. I edited my htaccess file and it's as below:
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP_HOST} !^www\.mysite\.com
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L]
RewriteCond %{HTTP_REFERER} xuite\.net
</IfModule>
# END WordPress
order allow,deny
deny from 210.242.17.204
allow from all
Anyone pls check if it has any conflicts?
Thanks a lot.