网站地图    收藏   

主页 > 后端 > php资料库 >

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

来源:自学PHP网    时间:2014-12-04 22:12 作者: 阅读:

[导读] apache实现手机访问www网站自动跳转到WAP站点 vi / usr / local / apache2 / conf / httpd . conf LogFormat %h %l %u %t \%r\ %s %b \%{Referer}i\ \%{User-Agent}i\ \%{Via}i\ combinedwap CustomLog logs/access_log combinedwap RewriteLog...

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

 

vi /usr/local/apache2/conf/httpd.conf

LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" \"%{Via}i\"" combinedwap
CustomLog "logs/access_log" combinedwap

RewriteLogLevel 9
RewriteEngine On
RewriteLog "/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浏览器的。

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论