CodeIgniter:重定向Internet Explorer访问者

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeIgniter:重定向Internet Explorer访问者相关的知识,希望对你有一定的参考价值。

  1. $this->load->library('user_agent');
  2. if($this->agent->browser() == 'Internet Explorer' AND in_array($this->agent->version(), array('6.0','7.0')))
  3. {
  4. redirect('some_page');
  5. }

以上是关于CodeIgniter:重定向Internet Explorer访问者的主要内容,如果未能解决你的问题,请参考以下文章

如何将不存在的数据页面重定向到 Codeigniter 中未找到的页面?

codeigniter 301 使用路由器重定向旧网址,并且没有重定向

CodeIgniter 4 重定向功能不起作用

Codeigniter 将 Post 处理为 Get

在 CodeIgniter 中重定向整个站点不起作用

Codeigniter:form_open 重定向到空白页面