Mobile Redirect using htaccess

后端 未结 9 1765
不思量自难忘°
不思量自难忘° 2020-11-22 03:36

I have a website called

www.website.org

I have a mobile website called

m.website.org

I want to use an htaccess to a

9条回答
  •  温柔的废话
    2020-11-22 04:21

    For Mobiles like domain.com/m/

    RewriteCond %{HTTP_REFERER} !^http://(.*).domain.com/.*$ [NC]
    RewriteCond %{REQUEST_URI} !^/m/.*$
    RewriteCond %{HTTP_USER_AGENT} "android|blackberry|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
    RewriteRule ^(.*)$ /m/ [L,R=302]
    

提交回复
热议问题