I can never get .htaccess to work without help :(
I have a Facebook app running php scripts on my server in an iFrame and would like to protect the php files from being accessed by anyone except for the facebook app, so I used the following .htaccess
<Files *.php>
Order Deny,Allow
Deny from all
allow from facebook.com
</Files>
It doesn't work, I just get the message 'Forbidden You don't have permission to access /xxxxx/ on this server.' when I try to use my app inside facebook.
What do I need to allow facebook access to run the script in an iFrame but block anyone else access?