Forum Moderators: open
#You need something like this so your cloak path isn't given away.
ErrorDocument 404 "<h1> 404 Page Missing <h1>
RewriteEngine on
RewriteBase /
#sebots example
RewriteCond %{REMOTE_ADDR} ^111.111.111.19$ [OR]
RewriteCond %{REMOTE_ADDR} ^111.111.111.29$ [OR]
#More compact style
RewriteCond %{REMOTE_ADDR} ^111.111.111.13$¦^111.111.111.115$ [OR]
#Include ranges, this example lets in a class C
RewriteCond %{REMOTE_ADDR} ^111.111.112.
RewriteRule ^(.*).html /sebots/$1.html [P]
It would work well though for those that want to deliver different pages to a smaller subset of visitors by IP Address. Were you thinking along these lines, or were you thinking for full fledged cloaking?