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

このリスト メソッドにアクセスできないのはなぜですか?

config.php の ACTION_SUFFIX を Action に変更すると、index.php/Home/Idex/list というパスが通らなくなりましたが、これは私の環境に関係するのでしょうか? Apache は使用せず、nginx のみを使用しています。


谁在乎昵称呢谁在乎昵称呢2638日前1173

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

  • 谁在乎昵称呢

    谁在乎昵称呢2017-08-21 18:10:13

    server {
            listen 80;
            charset utf-8;
            root D:/data/tp3/;
            index   index.php index.html index.htm;
            server_name tp5.com;
            location / {
            try_files $uri $uri/ /index.php;
            if (!-e $request_filename) {
            rewrite ^(.*)$ /index.php?s= last;
            break;
            }
            }
            location ~ \.php$ {
             include fastcgi_params;
            fastcgi_pass   php_processes;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
            }
    }

    その後、nginxの設定をこれに変更しましたが、チュートリアルとは異なり、リストメソッドはhttp://tp5.com/Home/Index/listからアクセスします。 。


    返事
    1
  • ringa_lee

    ringa_lee2017-08-21 18:03:30

    プロジェクトディレクトリの問題、再度調整できます

    返事
    0
  • キャンセル返事