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 구성을 이렇게 변경했는데 튜토리얼과 다릅니다. list 메소드는 http://tp5.com/Home/Index/list 를 통해 접속합니다. .