【发布时间】:2015-12-18 12:57:57
【问题描述】:
嘿,谁能告诉我如何使用 .htaccess 文件将我的这个页面 http://www.fastvpnservice.com/best-vpn-for-torrenting.html 重定向到另一个页面 http://www.fastvpnservice.com/5-best-fastest-vpn.html,我非常感谢能给我提供完整代码的人,我只是复制和粘贴将其放入我的 .htaccess 文件中。
【问题讨论】:
嘿,谁能告诉我如何使用 .htaccess 文件将我的这个页面 http://www.fastvpnservice.com/best-vpn-for-torrenting.html 重定向到另一个页面 http://www.fastvpnservice.com/5-best-fastest-vpn.html,我非常感谢能给我提供完整代码的人,我只是复制和粘贴将其放入我的 .htaccess 文件中。
【问题讨论】:
你可以使用:
RewriteEngine on
RewriteRule ^best-vpn-for-torrenting\.html$ 5-best-fastest-vpn.html [NC,R=301,L]
【讨论】:
您可以使用以下规则将特定 url 重定向到新位置:
RewriteEngine on
RewriteCond %{THE_REQUEST} /best-vpn-for-torrenting\.html [NC]
RewriteRule ^ http://www.fastvpnservice.com/5-best-fastest-vpn.html [L,R]
【讨论】: