Android Tablets versus Android Phones in Htaccess
I have been using htaccess to redirect mobile devices like this:
RewriteCond %{HTTP_USER_AGENT} Android [NC,OR]
RewriteCond %{HTTP_USER_AGENT} iPod [NC,OR]
RewriteCond %{HTTP_USER_AGENT} Blackberry [NC,OR]
RewriteCond %{HTTP_USER_AGENT} Symbian [NC,OR]
RewriteCond %{HTTP_USER_AGENT} iPhone [NC]
Is the Android line redirecting ALL android devices ie, tablets and phones or just phones, I assumed it was just phones but want to do something different with Android Tablets now ?
Ta
|