I have this configuration in my httpd.conf
<Directory />
AllowOverride none
Order Deny,Allow
Deny from all
Allow from 66.220.144.0/20 69.63.176.0/20
</Directory>
<Files crossdomain.xml>
Order deny,allow
Allow from all
</Files>
What I am trying to achive is allow facebook to access the web application and deny everyone else but allow everybody to access the file crossdomain.xml. Unfortunately the above configuration is not working. The result of the above config is the crossdomain.xml file is still being blocked. Can anyone help me on this configuration?
Thanks!