URL変更していない:私はlocalhost/web/app_dev.php/112-redirect-this
に行くときSymfony2の301リダイレクトは私のrouting.ymlファイルに簡単なredirectt持っ
products_in_categories:
path: /{slug}
defaults: { _controller: MpShopBundle:Category:show }
redirect_category:
path: /112-redirect-this
defaults:
_controller: MpShopBundle:Category:show
route: products_in_categories
slug: to-this
permanent: true
だから、それは301リダイレクトを行うと、URLを変更する必要がありますが...それはロードページは正常に表示されますが、URLは変更されません。それは示しています
localhost/web/app_dev.php/112-redirect-this
は、それが表示されるはずですとき: localhost/web/app_dev.php/to-this
私が何か間違ったことをやっていますか?
が重複する可能性をsymfony2で](http://stackoverflow.com/questions/8529038/redirect-301-one-route-to-another-from-routing-yml-in-symfony2) – hchr