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.
我有以下网址
example.com/show.php?xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
我想将它重定向到控制器测试操作 redirs。我如何通过 cake php 路由或通过 htaccess 来实现这一点。
您可以在app/Config/routes.php文件中为此输入一个简单的路由:
app/Config/routes.php
Router::connect('/show.php', array('controller' => 'tests', 'action' => 'redirs'));
如果需要,您可以在您的操作中处理查询字符串中传递的任何内容。