michele
2 post(s)
|
is this service available?
if yes there is an html code to insert on my original page to redirect when show in a mobile device?
tks
regards
|
Petr Vlk
Administrator
94 post(s)
|
hello,
per the other thread discussing this topic recently – we plan to add this feature, but don’t have timeline for it available yet.
It’ll be announced as new feature once it’s available for sure.
|
DJ Kay Dee
2 post(s)
|
You can use the following .htaccess script on your server to detect and redirect traffic for mobile users. This is what I’ve been using for over a year to redirect moble viewers to my UBIK.com page. Try it yourself: www.dj-kaydee.com redirects automatically to m.dj-kaydee.com when viewed from a mobile device :)
~~~~~~~~~~~~~~~~~~~~~~~~~
CODE:
~~~~~~~~~~~~~~~~~~~~~~~~~
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/m/.$
RewriteCond %{HTTP_HOST} !^m.yourdomain.com$
RewriteCond %{HTTP_ACCEPT} “text/vnd.wap.wml|application/vnd.wap.xhtml+xml” [NC,OR]
RewriteCond %{HTTP_USER_AGENT} “acs|alav|alca|amoi|audi|aste|avan|benq|bird|blac|blaz|brew|cell|cldc|cmd-” [NC,OR]
RewriteCond %{HTTP_USER_AGENT} “dang|doco|eric|hipt|inno|ipaq|java|jigs|kddi|keji|leno|lg-c|lg-d|lg-g|lge-” [NC,OR]
RewriteCond %{HTTP_USER_AGENT} “maui|maxo|midp|mits|mmef|mobi|mot-|moto|mwbp|nec-|newt|noki|opwv” [NC,OR]
RewriteCond %{HTTP_USER_AGENT} “palm|pana|pant|pdxg|phil|play|pluc|port|prox|qtek|qwap|sage|sams|sany” [NC,OR]
RewriteCond %{HTTP_USER_AGENT} “sch-|sec-|send|seri|sgh-|shar|sie-|siem|smal|smar|sony|sph-|symb|t-mo” [NC,OR]
RewriteCond %{HTTP_USER_AGENT} “teli|tim-|tsm-|upg1|upsi|vk-v|voda|w3cs|wap-|wapa|wapi” [NC,OR]
RewriteCond %{HTTP_USER_AGENT} “midp|wap|wapp|wapr|webc|winw|winw|xda|xda-” [NC,OR]
RewriteCond %{HTTP_USER_AGENT} “up.browser|up.link|windowssce|iemobile|mini|mmp” [NC,OR]
RewriteCond %{HTTP_USER_AGENT} “smartphone|symbian|series60|phone|pocket|mobile|pda|psp|iphone|android|blackberry” [NC]
RewriteRule ^(.)$ http://m.yourdomain.com [L,R=302]
RewriteCond %{HTTP_HOST} ^yourdomain.com
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
Redirect permanent /index_flash.html http://www.yourdomain.com/
Redirect permanent /index_start.html http://www.yourdomain.com/
Redirect permanent /index_preloader.html http://www.yourdomain.com/
<< NOTE: Use the last 3 permanent redirect lines only if you have for example a flash site with multiple html pages showing up on Google SEO search. Otherwise, just delete them.
~~~~~~~~~~~~~~~~~~~~~~~~~~
GOOD LUCK!!!
|