我有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非常重要,因为它为我传递了一个参数。
答案 0 :(得分:0)
基本上,可以这样做;
RewriteEngine On
RewriteRule ^hello-1/hey$ hello-1/hey-2 [R=301,L]