1. 程式人生 > >Nginx配置隱藏index.php和PATH_INFO支援

Nginx配置隱藏index.php和PATH_INFO支援


server {
        listen       80;
        server_name  myblog.com ;
        root   "D:/phpStudy2/WWW/myblog/public";
        location / {
            index  index.html index.htm index.php;
            #autoindex  on;

             if (!-e $request_filename) {
                rewrite ^/(.*)$ /index.php/$1;
            }

        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.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;
        }
}

==[注意]==

如果nignx/conf下有vhosts.conf這個檔案的話,在這個檔案裡配置,當有這個檔案的時候,在nginx.conf裡配置是不起作用的。