redirect tablet traffic only

cpaforever

Regular Member
Joined
Sep 3, 2015
Messages
252
Reaction score
61
hi


how to use htaccess to redirect tablet traffic using useragent but not mobile ?

or what the most popular/common tablet devices browsing the web?

thanks
 
There are some common options, for example, specify devices like this:

Code:
RewriteCond %{HTTP_USER_AGENT} ipad [NC]

Or specify to not redirect the mobile traffic, something like this:

Code:
RewriteCond %{HTTP_USER_AGENT} android [NC]
RewriteCond %{HTTP_USER_AGENT} !mobile [NC]
 
There are some common options, for example, specify devices like this:

Code:
RewriteCond %{HTTP_USER_AGENT} ipad [NC]

Or specify to not redirect the mobile traffic, something like this:

Code:
RewriteCond %{HTTP_USER_AGENT} android [NC]
RewriteCond %{HTTP_USER_AGENT} !mobile [NC]
thank you .

i know about the redirect rules . but what the names of devices i may fill to redirect tablets ?

i don't want to redirect mobile ...
 
Back
Top