要使用.htaccess将特定页重定向到另一页吗

要使用.htaccess将特定页重定向到另一页吗,.htaccess,redirect,.htaccess,Redirect,嘿,有人能告诉我如何使用.htaccess文件将我的此页面重定向到另一个页面吗?我非常感谢能为我提供完整代码的人,我只需将其复制并粘贴到.htaccess文件中。您可以使用以下规则将特定url重定向到新位置: RewriteEngine on RewriteCond %{THE_REQUEST} /best-vpn-for-torrenting\.html [NC] RewriteRule ^ http://www.fastvpnservice.com/5-best-fastest-vpn.

嘿,有人能告诉我如何使用.htaccess文件将我的此页面重定向到另一个页面吗?我非常感谢能为我提供完整代码的人,我只需将其复制并粘贴到.htaccess文件中。

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

RewriteEngine on


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

RewriteEngine on
RewriteRule ^best-vpn-for-torrenting\.html$ 5-best-fastest-vpn.html [NC,R=301,L]