Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有哪些选项可以检测网站是否对移动设备友好或不使用 php。目前,我正在通过 curl 发送移动用户代理来检查站点是否具有 view-port 元标记、CSS3 @media 属性、移动重定向。在大多数情况下它工作正常,但在少数情况下它不起作用。
人们是否使用其他一些逻辑来使他们的网站对移动设备友好?如果是这样,这些逻辑是什么?
如果你想为移动设备重定向,你可以在你的 .htaccess 文件中使用 mod_rewrite。我这样做:
### MOBILE AGENT REDIRECT RewriteCond %{HTTP_USER_AGENT} "(android|blackberry|googlebot-mobile|iemobile|ipad|iphone|ipod|opera mobile|palmos|webos)" [NC] RewriteRule ^.*$ http://m.mysite.com/ [L,R=302]