不灭的焱

革命尚未成功,同志仍须努力下载JDK17

作者:Albert.Wen  添加时间:2017-10-29 21:16:15  修改时间:2024-04-15 00:14:46  分类:PHP库/系统/微信  编辑

CI框架在nginx服务器上配置rewrite去掉index.php的方法:

vim /usr/local/webserver/nginx/conf/nginx.conf

实例配置代码:

 server {
    listen       80;
    server_name  www.111cn.net;
    index index.html index.htm index.php;
    root  /data0/htdocs/lamp100;
 
    #nginx去掉index.php
    location / {
        rewrite ^/$ /index.php last;
        rewrite ^/(?!index\.php|robots\.txt|uploadedImages|resource|images|js|css|styles|static)(.*)$ /index.php/$1 last;
    }
 
    #nginx模拟pathinfo,否则CI框架的控制器无法访问
 
    location ~ ^(.+\.php)(.*)$ {
 
      fastcgi_pass  127.0.0.1:9000;
      fastcgi_index index.php;
      fastcgi_split_path_info ^(.+\.php)(.*)$;
      fastcgi_param        SCRIPT_FILENAME        $document_root$fastcgi_script_name;
      fastcgi_param        PATH_INFO                $fastcgi_path_info;
      fastcgi_param        PATH_TRANSLATED        $document_root$fastcgi_path_info;
      include        fastcgi_params;
 
    }
 
    log_format  lamp100logs  '$remote_addr - $remote_user [$time_local] "$request" '
               '$status $body_bytes_sent "$http_referer" '
               '"$http_user_agent" $http_x_forwarded_for';
    access_log  /data1/logs/lamp100logs.log  lamp100logs;
}