在我的 CI 应用程序中,我有以下控制器:
http://localhost/myapp/index.php/frontend/login/
在这个控制器(登录控制器)中,我有一个名为submit()
. 此控制器的关联视图文件具有带有action='submit/'
. 这个想法是当表单提交时,它会转到http://localhost/myapp/index.php/frontend/login/
-- 只要 URL 有一个斜杠,它就会这样做。
但是,如果 URL 是这样的(没有尾部斜杠):
http://localhost/myapp/index.php/frontend/login
我提交了表格,我被重定向到以下内容:
http://localhost/myapp/index.php/frontend/submit/
这会导致 404,因为我没有submit
控制器。