Copyright © 2022-2024 aizws.net · 网站版本: v1.2.6·内部版本: v1.23.3·
页面加载耗时 0.00 毫秒·物理内存 59.9MB ·虚拟内存 1300.5MB
欢迎来到 AI 中文社区(简称 AI 中文社),这里是学习交流 AI 人工智能技术的中文社区。 为了更好的体验,本站推荐使用 Chrome 浏览器。
在构建 Web 应用程序时,我们经常需要将用户从一个页面重定向到另一个页面。 CodeIgniter 让我们轻松完成这项工作。 redirect() 函数用于此目的。
语法 |
重定向($uri = '', $method = 'auto', $code = NULL) |
Parameters |
|
Return Type |
void |
第一个参数可以有两种类型的 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('http://www.lidihuo.com'); } public function computer_graphics() { /*Load the URL helper*/ $this->load->helper('url'); redirect('http://www.lidihuo.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 会将您重定向到 lidihuo.com 网站,如果您访问以下 URL,则会将您重定向到 lidihuo.com 上的计算机图形教程。
http://yoursite.com/index.php/redirect/computer_graphics
在构建 Web 应用程序时,我们非常关心网站的性能,例如控制器执行的时间和使用的内存量。不仅是性能,我们还需要在开发一些应用程序时查看POST数据、数据库查询数据、会话数据等数据的洞察力,用 ...