Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working towards having a web application, where the HTTP request for static content (images / JS / CSS etc) is going with the cookies. Ideally the cookies doesn't hold any significance for the static request except overloading the request. So, I tried giving the below configuration in the Apache's HTTPD.Conf file:

  1. Uncommenting (It was commented prior to my change),
         LoadModule setenvif_module modules/mod_setenvif.so &
         LoadModule headers_module modules/mod_headers.so

  2. Added below 2 lines,

         SetEnvIf Mime image/.* unset-cookie
         Header unset Set-Cookie

Post this change, if I intercept the HTTP request using tamper data, I still see the png / jpeg request carrying the cookies with it.

Can somebody help me if I am missing anything else?

share|improve this question
I hope you restarted Apache? – Andrew Schulman Nov 11 '11 at 12:30
Yes, I have restarted but still change doesn't work. – Sivakumar Nov 15 '11 at 7:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.