1. 程式人生 > >Nginx配置 隱藏入口文件index.php

Nginx配置 隱藏入口文件index.php

roo fault 目錄 document scrip scripts clu class clas

Nginx配置文件裏放入這段代碼


server {
    location / {
        index index.php index.html index.htm l.php;
        autoindex  on;
        
        if (!-e $request_filename) {
      #一級目錄
     # rewrite ^/(.*)$ /index.php/$1 last;
      #二級目錄,這裏註意修改成自己的項目目錄
      rewrite ^/rent/public/(.*)$ /rent/public/index.php/$1 last;
   } 
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    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;
    }
}

原文地址:https://segmentfault.com/a/1190000015799080

Nginx配置 隱藏入口文件index.php