Mar*_*jos 1 php redirect zend-framework2
我需要在 ZF2 中进行这样的重定向:
redirect 301 /something /anotherway
Run Code Online (Sandbox Code Playgroud)
我已经在我的.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
Run Code Online (Sandbox Code Playgroud)
如果我用 ZF2 把它放在我的 .htaccess 上,它对我来说会出错......我怎么能在 ZF2 中做到这一点?
从控制器
return $this->redirect()->toUrl('http://where you want the redirect to go')->setStatusCode(301);
Run Code Online (Sandbox Code Playgroud)