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.

In my .htaccess files:
For proper Cookies I use this, that's OK if I check whether there exists a cookie.

   RewriteCond %{HTTP_COOKIE} (my\_cookie) [NC]

But when I tried to check for zero values and use these choices, it fails to match cases:

RewriteCond %{HTTP_COOKIE} ^.*my\_cookie=0.*$ [NC]
RewriteCond %{HTTP_COOKIE} my\_cookie=0 [NC]
RewriteCond %{HTTP_COOKIE} (my\_cookie=0) [NC]

When I make print_r ( $_COOKIE ); I get this:

Array
(
    [analytics] => true
    [CakeCookie] => Array
        (
            [my_cookie] => 0
            [newuser] => 1
        )
)

How can I check the cookie value for this case?

share|improve this question
1  
Maybe CakeCookie=.*my_cookie\=0.*? I've never tried rewriting based on cookie values though, so this is just a stab in the dark. – Marc B Jan 25 at 22:08
Nope.. not worked. Even this didn't help. CakeCookie=.*authorized=1.*$ – trante Jan 25 at 22:17

2 Answers

Im using same solution for handle language:

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_COOKIE} lang=([^;]+) [NC]
RewriteRule ^(.*)$ /$1?lang=%1 [NC,L,QSA]

but I checking value in php file. I hope that it will be helpful for u ;)

share|improve this answer
up vote 0 down vote accepted

After too many tryouts, this solved my issue:

RewriteCond %{HTTP_COOKIE} CakeCookie.*my\_cookie.*=0

I still don't know what would be exact pattern instead of .*
but this one works.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.