- CodeIgniter 教程
- CodeIgniter - 主页
- CodeIgniter - 概述
- CodeIgniter - 安装 CodeIgniter
- CodeIgniter - 应用程序架构
- CodeIgniter - MVC 框架
- CodeIgniter - 基本概念
- CodeIgniter - 配置
- CodeIgniter - 使用数据库
- CodeIgniter - 库
- CodeIgniter - 错误处理
- CodeIgniter - 文件上传
- CodeIgniter - 发送电子邮件
- CodeIgniter - 表单验证
- CodeIgniter - 会话管理
- CodeIgniter - Flashdata
- CodeIgniter - 临时数据
- CodeIgniter - Cookie 管理
- CodeIgniter - 常用函数
- CodeIgniter - 页面缓存
- CodeIgniter - 页面重定向
- CodeIgniter - 应用程序分析
- CodeIgniter - 基准测试
- CodeIgniter - 添加 JS 和 CSS
- CodeIgniter - 国际化
- CodeIgniter - 安全
- CodeIgniter 有用资源
- CodeIgniter - 快速指南
- CodeIgniter - 有用的资源
- CodeIgniter - 讨论
CodeIgniter - 页面重定向
在构建 Web 应用程序时,我们经常需要将用户从一个页面重定向到另一个页面。CodeIgniter 使我们的工作变得轻松。redirect ()函数就是用于此目的。
句法 |
重定向( $uri = '', $method = 'auto', $code = NULL ) |
参数 |
|
返回类型 |
空白 |
第一个参数可以有两种类型的 URI。我们可以将完整的站点 URL 或 URI 段传递给您想要定向的控制器。
第二个可选参数可以是 auto、location 或 refresh 三个值中的任意一个。默认为自动。
第三个可选参数仅适用于位置重定向,它允许您发送特定的 HTTP 响应代码。
例子
创建一个名为Redirect_controller.php的控制器并将其保存在application/controller/Redirect_controller.php中
<?php class Redirect_controller extends CI_Controller { public function index() { /*Load the URL helper*/ $this->load->helper('url'); /*Redirect the user to some site*/ redirect('https://www.tutorialspoint.com'); } public function computer_graphics() { /*Load the URL helper*/ $this->load->helper('url'); redirect('https://www.tutorialspoint.com/computer_graphics/index.htm'); } public function version2() { /*Load the URL helper*/ $this->load->helper('url'); /*Redirect the user to some internal controller’s method*/ redirect('redirect/computer_graphics'); } } ?>
更改application/config/routes.php中的routes.php文件以添加上述控制器的路由,并在文件末尾添加以下行。
$route['redirect'] = 'Redirect_controller'; $route['redirect/version2'] = 'Redirect_controller/version2'; $route['redirect/computer_graphics'] = 'Redirect_controller/computer_graphics';
在浏览器中键入以下 URL 以执行该示例。
http://yoursite.com/index.php/redirect
上述 URL 会将您重定向到tutorialspoint.com 网站,如果您访问以下 URL,则会将您重定向到tutorialspoint.com 上的计算机图形教程。
http://yoursite.com/index.php/redirect/computer_graphics