try this
RewriteEngine on
RewriteCond %{REQUEST_URI} page_you_want_to_protect.htm [NC]
RewriteCond %{HTTP_REFERER} !.*domain_of_lil2rich4u2_choice.com.* [NC]
RewriteRule .* - [F]
Edit: this "page_you_want_to_protect.htm" you should tweak a little (subdirectory like /my_super_dir/page... etc.)
|