0

我有一个类似的链接www.example.com/hello-1/hey-2,现在我想做的是我想从 重定向到这个链接www.example.com/hello-1/hey。如何为此编写 htaccess 规则。我已经尝试搜索它,尝试了相同的方法来减少 index.php 但没有奏效。谢谢。

看,基本上我希望人们在类型 www.example.com/hello-1/hey 这是我的旧链接时被重定向。我希望它们被重定向到 www.example.com/hello-1/hey-2,这 2 很重要,因为它为我传递了一个参数。

4

1 回答 1

0

基本上,可以这样做;

RewriteEngine On
RewriteRule ^hello-1/hey$   hello-1/hey-2 [R=301,L]
于 2013-02-02T11:51:42.143 回答