Codeigniter 中的 URL 路由
我一直在使用 .htaccess 文件来重定向一些重命名的控制器/操作。举例来说...
RewriteRule ^top/index/?(.*)?$ /index.php/home/index/$1 [L]
我可以使用 config/routes.php 文件来实现相同的目的吗?还是说routes.php 只能用于URL 重写,还是它可以识别实际存在的控制器/操作?
问候
I have been using .htaccess files to redirect some of my renamed controllers/actions. Say for example...
RewriteRule ^top/index/?(.*)?$ /index.php/home/index/$1 [L]
Can I use the config/routes.php file for the same purpose or is it that routes.php can only be used for URL rewriting or is is that it recognises the controllers/actions which actually exist?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
得到了我的答案。它是双向的。
Got my answer. It works both ways.