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.
私は次のURLを持っています
example.com/show.php?xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
コントローラーテストアクションのリダイレクトにリダイレクトしたいと思います。Cake php ルーティングまたは htaccess を使用してこれを達成するにはどうすればよいですか。
このための単純なルートをapp/Config/routes.phpファイルに入力するだけです。
app/Config/routes.php
Router::connect('/show.php', array('controller' => 'tests', 'action' => 'redirs'));
必要に応じて、アクション内でクエリ文字列に渡されたものを処理できます。