读书人

apache兑现手机访问www网站自动跳转到

发布时间: 2012-09-29 10:30:01 作者: rapoo

apache实现手机访问www网站自动跳转到WAP站点
apache实现手机访问www网站自动跳转到WAP站点

vi /usr/local/apache2/conf/httpd.confLogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" \"%{Via}i\"" combinedwapCustomLog "logs/access_log" combinedwapRewriteLogLevel 9RewriteEngine OnRewriteLog "/usr/local/apache2/logs/rewrite_wap.log"<Directory />    Options FollowSymLinks    AllowOverride None    Order deny,allow    Deny from all       RewriteEngine On       RewriteCond %{HTTP:Via} ^.*WAP.*       RewriteRule   ^(.+)  http://m.abc.com</Directory>


通过运营商提供的Via信息实现跳转,但是对智能机效果不是很好,因为智能机很多是支持www浏览器的。

读书人网 >Apache

热点推荐