我有一个小系统,其中有一个链接可以激活或停用用户..
所以我有列出用户的功能
function users()
{
//the code
}
并且有一个函数采用第三个 uri 段,即 id 并将用户设置为激活或停用。
function action_settings()
{
// the code
}
我想确保仅通过函数用户访问 action_settings,并且不允许任何用户直接访问该函数。
所以链接
localhost/motivators/action_settings/25
必须只能通过以下链接访问
localhost/motivators/users/
是否可以在 Codeigniter 中实施此限制?