First of all, I used Nginx’s URL rewrite method.
Turn on enable_query_strings
The method to turn on is very simple: set in application/config/config.php:
$config['enable_query_strings'] = FALSE;
The PATH_INFO mode used in CI development projects must be in To rewrite the URL in the Nginx configuration, you need to enable string query in the CI configuration file and compare the changes in the URL form:
URL: www.xxx.com/user/profile String query mode: www.xxx.com /index.php?c=user&m=profile
After rewriting the front-end and back-end URLs according to certain rules, the test was OK. But there is a problem when paging, because the paging URL address generated after enabling string query has changed:
Not enabled: /user/list/10 After enabling string query: /user/list&per_page=10
The reason why the following wrong URL appears is that when I generate pagination, the base_url format has not changed, so after changing from /user/list to the corresponding /index.php?c=user&m=list, it will become the following situation:
The second page: www.xxx.com/index.php?c=user&m=list&per_page=10 The third page: www.xxx.com/index.php?c=user&m=list&per_page=20 The fourth page: www.xxx .com/index.php?c=user&m=list&per_page=30
And the pagesize I set is always 10, so per_page should always be 10. I took a look at the code of the Pagination class and found that per_page is just the default value of query_string_segment. I mistakenly thought it was the per_page parameter.
Paging is compatible with rewrite
To summarize, if paging is to be compatible with rewrite, then change the base_url parameter when generating paging:
Method 1: /index.php?c=user&m=list, the result is: /index.php?c=user&m=list&per_page=10 Method 2: /user/list?, the result is: /user/list?&per_page=10
The paging SQL is:
$this->db-> ;limit($pagesize, $this->input->get('per_page'));
In order to maintain URL consistency, we still use the second method. You can also add any useless parameters later to get the result. Becomes /user/list?x=xxx&per_page=10.
Discuss
about pagination. Of course, you can also not use the paging that comes with CI, or change Pagination.php.
If it is passed as a parameter of method, a normal URL such as: /user/arg1/arg2/arg3, then it cannot be passed during rewrite (at least I haven’t found a solution yet). If you want to The solution is unless the parameters are passed in GET mode, which requires changing the program, so it is not recommended.
And using rewrite requires targeting different forms of URLs, which becomes a burden if the project is complex, so I looked for another method: let Nginx pass PATH_INFO to fastcgi, see the next article.
The above is the content of Nginx configuration CodeIgniter project (1). For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

CodeIgniter中间件:加速应用程序的响应速度和页面渲染概述:随着网络应用程序的复杂性和交互性不断增长,开发人员需要使用更加高效和可扩展的解决方案来提高应用程序的性能和响应速度。CodeIgniter(CI)是一种基于PHP的轻量级框架,提供了许多有用的功能,其中之一就是中间件。中间件是在请求到达控制器之前或之后执行的一系列任务。这篇文章将介绍如何使用

Nginx错误页面配置,美化网站故障提示在网站运营过程中,难免会遇到服务器错误或者其他故障,这些问题会导致用户无法正常访问网站。为了提升用户体验和网站形象,我们可以对Nginx进行错误页面配置,美化网站故障提示。本文将介绍如何通过Nginx的错误页面配置功能,自定义错误页面,并提供代码示例作为参考。一、修改Nginx配置文件首先,我们需要打开Nginx的配置

在CodeIgniter框架中使用数据库查询构建器(QueryBuilder)的方法引言:CodeIgniter是一个轻量级的PHP框架,它提供了许多功能强大的工具和库,方便开发人员进行Web应用程序开发。其中一个令人印象深刻的功能是数据库查询构建器(QueryBuilder),它提供了一种简洁而强大的方法来构建和执行数据库查询语句。本文将介绍如何在Co

随着Web应用程序的不断发展,更加快速和高效地开发应用程序变得非常重要。并且,随着RESTfulAPI在Web应用程序中的广泛应用,对于开发人员来说,必须理解如何创建和实现RESTfulAPI。在本文中,我们将讨论如何使用CodeIgniter框架实现MVC模式和RESTfulAPI。MVC模式简介MVC(Model-Vie

CodeIgniter是一个轻量级的PHP框架,采用MVC架构,支持快速开发和简化常见任务。CodeIgniter5是该框架的最新版本,提供了许多新的特性和改进。本文将介绍如何使用CodeIgniter5框架来构建一个简单的Web应用程序。步骤1:安装CodeIgniter5下载和安装CodeIgniter5非常简单,只需要遵循以下步骤:下载最新版本

如何实现Nginx的跨域资源共享(CORS)配置,需要具体代码示例随着前后端分离开发的流行,跨域资源共享(CORS)问题成为了一个常见的挑战。在Web开发中,由于浏览器的同源策略限制,客户端JavaScript代码只能请求与其所在页面具有相同域名、协议和端口的资源。然而,在实际开发中,我们常常需要从不同域名、或者是不同子域名下请求资源。这时候,就需要使用CO

现今互联网时代,一款深受用户喜爱的网站必须具备简洁明了的前端界面和功能强大的后台管理系统,而PHP框架CodeIgniter则是一款能够让开发者快速搭建后台管理系统的优秀框架。CodeIgniter拥有轻量级、高效率、易扩展等特点,本文将针对初学者,详细说明如何通过该框架快速搭建一个后台管理系统。一、安装配置安装PHPCodeIgniter是一个基于PHP的

随着移动互联网的发展,即时通信变得越来越重要,越来越普及。对于很多企业而言,实时聊天更像是一种通信服务,提供便捷的沟通方式,可以快速有效地解决业务方面的问题。基于此,本文将介绍如何使用PHP框架CodeIgniter开发一个实时聊天应用。了解CodeIgniter框架CodeIgniter是一个轻量级的PHP框架,提供了一系列的简便的工具和库,帮助开发者快速


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor
