Rediriger les requêtes iPhone, Blackberry, & Palm avec un .htaccess
23/04/09
Voila comment rediriger automatiquement les clients mobiles vers un site dédié :
RewriteCond %{HTTP_USER_AGENT} ^.*iPhone.*$
RewriteRule ^(.*)$ http://mobile.yoursite.com [R=301]
RewriteCond %{HTTP_USER_AGENT} ^.*BlackBerry.*$
RewriteRule ^(.*)$ http://mobile.yoursite.com [R=301]
RewriteCond %{HTTP_USER_AGENT} ^.*Palm.*$
RewriteRule ^(.*)$ http://mobile.yoursite.com [R=301]



29 avril 2009 - 16 h 11 min
Intéressant
Merci !