检测到移动设备或平板电脑时,重定向到https

时间:2016-01-14 11:40:06

标签: redirect mobile https

我想在检测移动或teblet但不是pc / laptap时重定向到https。在PC和笔记本电脑上我想使用计划http。我尝试下面的htaccess代码,但它在所有移动/平板电脑/个人电脑/笔记本电脑设备上重定向到https。

我也尝试移动检测PHP脚本,但我不能成功。

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTP_HOST} !^www\.
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R,QSA]
</IfModule>

0 个答案:

没有答案