为什么我的代码点火器控制器部分工作?

发布于 2024-12-13 04:41:55 字数 1116 浏览 0 评论 0原文

我已启用查询字符串设置,并且对于所有与查询字符串相关的 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 技术交流群。

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

发布评论

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

评论(1

书信已泛黄 2024-12-20 04:41:55

当查询字符串中只有一个元素时,我过去也遇到过一些问题。试试这个:

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.

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