在Nginx中配置CodeIgniter的pathinfo模式URL重写,可以通过修改Nginx配置文件来实现,以下是一个示例配置:
server { listen 80; server_name yourdomain.com; root /path/to/your/codeigniter/project; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { include snippets/fastcgiphp.conf; fastcgi_pass unix:/var/run/php/php7.4fpm.sock; # 根据你的PHP版本和配置调整 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } location ~ /\.ht { deny all; } }
在这个配置中:
1、listen 80;
指定服务器监听80端口。
2、server_name yourdomain.com;
设置你的域名。
3、root /path/to/your/codeigniter/project;
设置项目的根目录。
4、index index.php index.html index.htm;
设置默认索引文件。
5、location /
块中的try_files $uri $uri/ /index.php?$args;
指令尝试按顺序访问请求的URI、目录或最终将请求传递给index.php处理。
6、location ~ \.php$
块用于处理PHP文件,包括FastCGI的配置。
7、location ~ /\.ht
块用于禁止访问以.ht
开头的文件。
请确保根据你的实际环境调整路径和PHP版本等配置,保存并重启Nginx服务后,这个配置应该可以支持CodeIgniter的pathinfo模式URL重写。