config.php の ACTION_SUFFIX を Action に変更すると、index.php/Home/Idex/list というパスが通らなくなりましたが、これは私の環境に関係するのでしょうか? Apache は使用せず、nginx のみを使用しています。
谁在乎昵称呢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からアクセスします。 。