>  Q&A  >  본문

이 목록 방법에 액세스할 수 없는 이유는 무엇입니까?

config.php의 ACTION_SUFFIX를 Action으로 수정한 후 index.php/Home/Idex/list 경로를 전달할 수 없습니다. 내 환경과 관련이 있습니까? Apache를 사용하지 않고 nginx만 사용하고 있습니다.


谁在乎昵称呢谁在乎昵称呢2638일 전1174

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


    회신하다
    1
  • ringa_lee

    ringa_lee2017-08-21 18:03:30

    프로젝트 디렉토리 문제, 다시 조정할 수 있습니다

    회신하다
    0
  • 취소회신하다