As the topic says, i need to redirect everyone except a certain ip address (mines) to another page (comingsoon.html) I seen a post somewhere about this before using the .htaccess file and some sort of deny from all Anyone know how to do this? Thanks
In your .htaccess file, you would want something similar to: ErrorDocument 403 /comingsoon.html <Limit GET POST PUT> Order deny,allow Deny from all Allow from 1.2.3.4 </Limit> Code (markup): Where 1.2.3.4 is the IP address you'd like to allow requests from (in this case, your own). Note that this applies to both the directory you have placed this .htaccess in, as well as all subdirectories of it.