ホームページ  >  に質問  >  本文

PHPの設定

public/index.php エントリ ファイルを非表示にするように Nginx を設定する方法

learnlearn2219日前1361

全員に返信(4)返信します

  • 胤彬-

    胤彬-2018-10-16 17:46:52

    vhost構成

    server {

    listen 80;

    server_name test.cn ;

    root "D:ceshi888lhyun";

    include "rewrite/thinkphp.conf";

    index index.htmlindex.htmインデックス。 php;

    #location {

    #

    # #autoindex on;

    #}

    location ~ .php(.*)$ {

    fastc gi_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 _INFO $fastcgi_path_info;

    fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;

    fastcgi_params を含める;

    }

    }


    thinkphp.conf

    location / {

    if (!-e $request_filename) {

    rewrite ^(.*)$ /index.php?s=/$1 last ;

    休憩;

    }

    }




    返事
    0
  • 胤彬-

    胤彬-2018-10-16 17:44:58

    返事
    0
  • Justin

    Justin2018-10-13 23:03:49

    thinkphpindex.phpを隠す

    返事
    0
  • キャンセル返事