首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

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

2012-09-29 
apache实现手机访问www网站自动跳转到WAP站点apache实现手机访问www网站自动跳转到WAP站点vi /usr/local/a

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浏览器的。

热点排行