i want to setup in my .htaccess apache file the env var for mobile
i have:
SetEnvIf User-Agent "iPhone" devicetype
SetEnvIf User-Agent "Android" devicetype
RewriteRule ^ - [E=DEVICE:%{devicetype}]
but my $_SERVER[‘DEVICE’] is always empty. why?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You rule will set the
$_SERVER['devicetype'][devicetype] => 1you don’t need:
RewriteRule ^ - [E=DEVICE:%{devicetype}]If you prefer, you can use this:
This will set $_SERVER[‘DEVICE’] to
mobile