Sometimes you may need to redirect your visitors to another website, but still be able to access your website from your IP.
This can easily be done using a .htaccess file. To redirect everyone but you to another website, you should add this code to your .htaccess file:
RewriteEngine On
RewriteBase /
RewriteCond %{REMOTE_HOST} !^1.2.3.4
RewriteRule .* http://www.anothersite.com [R=302,L]
You should replace the numbers 1, 2, 3 and 4 with the numbers of your actual IP address! You can find what your IP address is at:
This will redirect all your visitors to anothersite.com except you
You can achieve the same result by denying access to your website for everyone except you. All other visitors will be redirected to anothersite.com. The rules that should be added to your .htaccess file are:
ErrorDocument 403 http://www.anothersite.com
Order deny,allow
Deny from all
Allow from 1.2.3.4