Nginx配置CodeIgniter(CI)伪静态访问 美化隐藏URL中的index.php

Nginx配置CodeIgniter(CI)伪静态访问

Nginx是一款业界流行的高性能的 Web反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器。

在高连接并发的情况下,NginxApache服务器不错的替代品。

配置CI框架项目

这里直接上我的配置文件了,仅供参考:

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       8080;
        server_name  127.0.0.1;
        root /var/www/html;
        index index.html index.htm index.php;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

       # CI应用1伪静态 实际根据项目目录结果配置
       location /HealthExam2/wwwroot/manager {
            # root html;
            # autoindex on;
            #try_files $uri $uri/ /index.php;
            try_files $uri $uri/ /HealthExam2/wwwroot/manager/index.php?$is_args$args;
            #root   html;                                                                  
            #index  index.html index.htm index.php;     
        }

        // CI应用2伪静态 实际根据项目目录结果配置
        location /HealthExam2/wwwroot/service {      
            try_files $uri $uri/ /HealthExam2/wwwroot/service/index.php?$is_args$args;

        }       
        

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
       location  ~^(.+\.php)(.*)$ {
            root           /var/www/html;
            fastcgi_pass   127.0.0.1:9000;
            #fastcgi_index  index.php;
            #正则重新赋值:$1->$fastcgi_script_name $2->$fastcgi_path_info
            fastcgi_split_path_info ^(.+\.php)(.*)$;   
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_param SCRIPT_NAME $fastcgi_script_name;
            fastcgi_param  PATH_INFO $fastcgi_path_info;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
            # 隐藏index.php需开启
            fastcgi_param  PATH_TRANSLATED     $document_root$fastcgi_path_info; 
        }
    
       # location ~ \.php$ {
             # 设置监听端口
            #fastcgi_pass   127.0.0.1:9000;
             # 设置nginx的默认首页文件(上面已经设置过了,可以删除)
            #fastcgi_index  index.php;
             # 设置脚本文件请求的路径
            #fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
             # 引入fastcgi的配置文件
            #include        fastcgi_params;
    #}

        # deny access to .htaccess files, if Apache's document root
           # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}
发布了284 篇原创文章 · 获赞 258 · 访问量 121万+

猜你喜欢

转载自blog.csdn.net/meimeieee/article/details/103938438