Stackoverflow社区帮助我在apache服务器上为htaccess文件开发了以下代码,该代码允许重定向到我的移动网站以及特定页面的重定向。当有人单击链接时,这非常有效。
我的问题是,当有人键入他们的移动example.com/aa1时,我无法找到如何修改此代码来捕获重定向的信息。目前,这只会将用户引导回m.example.com主页。
Example.com是https:// M.example.com是http://
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteCond %{HTTP_HOST} ^(www\.)?(E|e)xample.com$ [NC]
RewriteCond %{REQUEST_URI} ^/aa1$ [OR]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^(.*)$ http://m.example.com/$1 [R=301,L]
非常感谢