我有一个网站的 2 个版本。一个普通的网站和一个 Jquery 移动网站。我运行一个 defaultrewite.php 模板并从 MYSQL 数据库中提取我的内容。
我希望能够将链接放到我的移动网站上,该链接可以转到主网站?
每次我从移动设备(例如 iphone)访问主网站时,.htaccess 文件都会将我发送到移动网站。
下面是我的 .htaccess 文件的代码。
谢谢
RewriteEngine on
RewriteRule ^/?([a-z0-9-_]*)$ default-rewrite.php?page=$1 [L]
RewriteCond %{REQUEST_URI} !^http://sonae.co.za/.*$
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|symbian|googlebot-mobile" [NC]
RewriteRule ^(.*)$ http://mobile.sonae.co.za/ [L,R=302]