I am creating a gateway page that redirects visitors based on what services they are using.
How should a .htaccess rule that redirects a visitor if he has a cookie originating from the domain accounts.google.com look like?
RewriteEngine On
RewriteCond %{REQUEST_URI} /ingoing*$
RewriteCond %{HTTP_COOKIE} ?? WHAT SHOULD I PUT HERE ??[NC]
RewriteRule . example.com/outgoing [R,L]