为什么我的代码点火器控制器部分工作?
我已启用查询字符串设置,并且对于所有与查询字符串相关的 URL 都可以正常工作,但除了此登录控制器...当我这样尝试时,它给了我一个错误,
404 Page Not Found 找不到您请求的页面。
URL:www.test.com/login/?sType=1
但是当我在没有查询字符串的情况下访问时,www.test.com/login/ ...工作正常...
类似的其他查询字符串 url 工作正常,如下所示, http://www.test.com/核心/子/注册/?sIds=3,4,&type=1 等等,
我该如何解决这个问题?
我的登录控制器,
function Login()
{
parent::Controller();
$this->load->model("user_login_model");
$this->load->library('user_agent');
}
// to load the login screen
function index()
{
//$this->load->model("user_login_model");
$this->load->view('login/user_login_form');
}
// to show as login
function show()
{
$this->load->view('login/user_login_form');
}
// to process the login
function checkuser()
{
}
// to logout
function logout()
{
}
}
/*welcome.php 文件结尾 / / 位置:./system/application/controllers/welcome.php */
I have enabled the query string settings and works fine for all the query string related URL's but except for this login controller... when I try like this, it gives me an error,
404 Page Not Found
The page you requested was not found.
URL : www.test.com/login/?sType=1
but when I access without query string, www.test.com/login/ ... works fine...
similarly other query string urls working fine as below,
http://www.test.com/core/child/register/?sIds=3,4,&type=1
etc.,
How can I fix this issue?
My login controller,
function Login()
{
parent::Controller();
$this->load->model("user_login_model");
$this->load->library('user_agent');
}
// to load the login screen
function index()
{
//$this->load->model("user_login_model");
$this->load->view('login/user_login_form');
}
// to show as login
function show()
{
$this->load->view('login/user_login_form');
}
// to process the login
function checkuser()
{
}
// to logout
function logout()
{
}
}
/* End of file welcome.php /
/ Location: ./system/application/controllers/welcome.php */
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当查询字符串中只有一个元素时,我过去也遇到过一些问题。试试这个:
www.test.com/login/?sType=1&n=1
它可能会起作用。
I have also experienced some problems in the past when there is only one element in query string. Try this:
www.test.com/login/?sType=1&n=1
It might work.