想要使用.htaccess将特定页面重定向到另一个页面

时间:2015-12-18 12:57:58

标签: .htaccess redirect

嘿,任何人都可以告诉我如何使用.htaccess文件将我的页面http://www.fastvpnservice.com/best-vpn-for-torrenting.html重定向到另一个页面http://www.fastvpnservice.com/5-best-fastest-vpn.html,我将非常感谢能够为我提供完整代码的人,我只需将其复制并粘贴到我的.htaccess文件中即可。

2 个答案:

答案 0 :(得分:1)

您可以使用:

aws

答案 1 :(得分:0)

您可以使用以下规则将特定网址重定向到新位置:

RewriteEngine on


RewriteCond %{THE_REQUEST} /best-vpn-for-torrenting\.html [NC]
RewriteRule ^ http://www.fastvpnservice.com/5-best-fastest-vpn.html [L,R]