Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は自分のウェブサイトに言語スイッチャーを設定しましたが、今はホームページにリダイレクトする方法しか知りません。
public function englishAction(Request $request) { $this->get('session')->setLocale('en_US'); return $this->redirect($this->generateUrl('homepage')); }
現在のページにリダイレクトするにはどうすればよいですか?
試す:
return $this->redirect($request->headers->get('referer'));
または別の解決策:URLリンクをgetパラメーターとして戻し、「englishAction」アクションのリダイレクトで使用することができます。