我需要在ZF2中进行这样的重定向:
redirect 301 /something /anotherway
我已经在我的.htaccess
文件上尝试了这个,但这在ZF2中不起作用。
我该怎么办?感谢
编辑:
我有很多旧网址在htaccess上重定向旧网站......例如:
redirect 301 /something /anotherway
redirect 301 /something2 /anotherway2
redirect 301 /something3 /anotherway3
redirect 301 /something4 /anotherway4
redirect 301 /something5 /anotherway5
redirect 301 /something6 /anotherway6
如果我把它放在带有ZF2的.htaccess上,那对我来说就是错误的......我怎样才能在ZF2中做到这一点?
答案 0 :(得分:4)
来自控制器
return $this->redirect()->toUrl('http://where you want the redirect to go')->setStatusCode(301);