Hi I want to show a holding page to outside users but from my machine gain access to the site. Can I do this with htaccess?
+1
A:
RewriteEngine On
RewriteCond !REMOTE_ADDR=127.0.0.1
RewriteRule .* /holdingPage.html [R,L]
Replace 127.0.0.1
with your machine's IP.
vartec
2009-04-02 15:18:38
Sorry to be a pain but does this allow me to point all other users to a holding page?
2009-04-02 15:21:14
Well, it does point you to SetEnvIf and Rewrite
vartec
2009-04-02 15:26:14