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;
    #    }
    #}

}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章