Something along these lines should work:
RewriteCond %{REMOTE_ADDR} ^123\.123\.123\.123
RewriteRule ^index\.html$ specialpage.html [R=301,L]
In this example, anyone with the IP address 123.123.123.123 requesting your index.html page would be redirected to specialpage.html. Hope this helps, you will be able to find quite a few examples through google if you are looking for something more specific.
|