如何在移动设备上将网站的每个帖子自动重定向到AMP版本?

时间:2019-06-20 15:52:02

标签: wordpress .htaccess redirect amp-html auto

我想在移动设备上自动重定向我的网站的每个帖子。我正在使用此代码

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !/amp$ [NC]
RewriteCond %{HTTP_USER_AGENT} (2.0\ MMP|240x320|400X240|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|Googlebot-Mobile|hiptop|IEMobile|KYOCERA/WX310K|LG/U990|MIDP-2.|MMEF20|MOT-V|NetFront|Newt|Nintendo\ Wii|Nitro|Nokia|Opera\ Mini|Palm|PlayStation\ Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|SHG-i900|Small|SonyEricsson|Symbian\ OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|webOS|Windows\ CE|WinWAP|YahooSeeker/M1A1-R2D2|iPhone|iPod|Android|BlackBerry9530|LG-TU915\ Obigo|LGE\ VX|webOS|Nokia5800) [NC]
RewriteRule ^([a-zA-Z0-9-]+)([\/]*)$ example.x/$1/amp [L,R=302]

1 个答案:

答案 0 :(得分:0)

您可以使用javascript 如果设备不是台式机,请重定向到Amp版本

<script>
    var isMobile = window.orientation > -1;
    if(isMobile){
        window.location.replace("{{ url('aboutUsAMP') }}");
    };
</script>