我在cakephp框架上运行一个站点wishberry.in。我以前有过一些脏URL,现在我希望它们通过.htaccess
进行清理我原来的网址是wishberry.in/createwishlist3,我希望通过301重定向将其更改为wishberry.in/brands。
使用301的原因是,如果有人输入wishberry.in/createwishlist3,该页面会自动将它们带到/品牌。
任何人都可以帮我解决我的.htaccess文件中的内容。
答案 0 :(得分:2)
我建议使用CakePHP中的路由而不是.htaccess文件。有关详细信息,请参阅http://bakery.cakephp.org/articles/Frank/2009/11/02/cakephp-s-routing-explained。
答案 1 :(得分:1)
以下应该可以解决问题:
RewriteEngine On
RewriteRule ^createwishlist3$ /brands [R=301,L,NC]
希望这有帮助。