Nginx如何來配置隱藏入口文件index.php(代碼)


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;

    }

}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM