PHP 框架 - 单向路由

发布于 2024-12-11 07:26:28 字数 251 浏览 0 评论 0原文

在 CodeIgniter 的路由文件中,可以将 URL 映射到控制器方法,如下所示:

$route['url/segment/(:num)'] = 'controller/methodasdf/$1';

它工作得很好,但我想做的是阻止用户直接调用最终路由 (methodasdf)。我尝试将方法设置为 private 并用下划线作为前缀,但这只会导致 404 错误。

In CodeIgniter's routes file, it is possible to map URLs to controller methods like this:

$route['url/segment/(:num)'] = 'controller/methodasdf/$1';

It works great, but what I'd like to do is stop the user calling the end route directly (methodasdf). I've tried setting the methods to private and prefixing them with an underscore, but that just results in a 404 error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放赐 2024-12-18 07:26:28

在控制器中,您可以检查 $this->uri->segment(1) == 'your_nice_segment' 是否存在,如果不是,您可以向他显示错误

In the controller you can check if $this->uri->segment(1) == 'your_nice_segment' and if it's not you can show him an error

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文