i've a cookie named "cookiename" with value "ok", and i'm trying to make a folder work if you have that cookie
I've tryed with
RewriteEngine On
RewriteCond %{HTTP_COOKIE} !^cookiename=ok$
RewriteRule .* / [NC,L]
without success... i'm getting redirected always
any ideas?
Thanks in advance