如何在Zend Frameork 2中进行301重定向?

时间:2015-04-24 13:56:23

标签: php redirect zend-framework2

我需要在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中做到这一点?

1 个答案:

答案 0 :(得分:4)

来自控制器

return $this->redirect()->toUrl('http://where you want the redirect to go')->setStatusCode(301);