Knowledge Base Article

How to redirect all visitors except your IP to another website?

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:

 

http://whatismyip.org/

 

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



Rating

Please indicate if this article was helpful for you.

rating :  4.6 from 5
views :  3510
votes :  18

Related Articles

Views

Haven't found what you are looking for? Suggest an article HERE.

powered by

Valid XHTML 1.0 Strict Valid CSS!