I need to use a facebook application but my web page return response 206 instead 200, so that the facebook application return http code 500.
I tested with http://developers.facebook.com/tools/debug/og/object?q=http://adserver.leadhouse.net/test/test/index.php and return 206 instead joomla.it return 200 when they are same curl -I response datae
I tested with this perl script: http://pastebin.com/NCDv9eTh and my page is vulnerable instead joomla.it is good.
I think that my answer is very close between Facebook debugger : Response 206 and Apache Webserver security and optimization tips
but I don't understand how change my apache configuration. the solution is into this page: www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.2 with similar code:
SetEnvIf Range (,.*?){5,} bad-range=1
RequestHeader unset Range env=bad-range
or httpd.apache.org/docs/2.2/mod/core.html#limitrequestfieldsize
how can I make it less vulnerable to my web pages?