我想知道是否可以在 .htcaccess 文件中编码并使其重定向/重写到外部 url。这是一个 Joomla 网站。
我想要的是使用手机或平板电脑等移动设备的访问者在访问此页面时应该被重定向: http ://www.axima.se/index.php/nytt-a-begagnat/sok-begagnade-maskiner
这是我希望他们定向到的网址:http: //m.dealers.mascus.com/Axima
我找到了这个线程,并将其用作灵感,尝试了一些代码组合,但我无法将代码正确组合在一起 使用 htaccess 仅重定向移动用户的特定页面请求
此代码来自另一个线程(对于 wordpress 站点),我不确定要保留什么以及将我的代码放在哪里:
# BEGIN Mobile redirect for the video
<IfModule mod_rewrite.c>
RewriteEngine On
# stuff to let through (ignore)
RewriteRule ^mobile/ - [L]
# redirect /video.html to /mobile/index.html for mobile browsers
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteRule ^video\.html$ /mobile/index.html [L,R=302]
</IfModule>
# END Mobile redirect