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

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

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;
    }
}
相關文章
相關標籤/搜索