코드이그나이터 기반 PHP 오픈소스 게시판 : 씨아이보드

php7 + nginx + php70w-fpm 조합인데 404 에러가 뜹니다. 헬프미좀 부탁합니다

  • 와사비
  • 7
  • 4,249
  • 글주소
  • 07-06

 server {

        listen  80;

        server_name  mysite.kr ;


        access_log  /var/log/nginx/lab.access.log;

        error_log  /var/log/nginx/lab.error.log;


        root  /home/deploy/

        index  index.php index.html index.htm;


        location ~ \.php$ {

            try_files $uri =404;

            fastcgi_pass   127.0.0.1:8080;

            fastcgi_index  index.php;

            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

            include        fastcgi_params;

        }


        # 기본 Rewrite Rule에 대한 설정입니다.

        location / {

                # Check if a file or directory index file exists, else route it to index.php.

                try_files $uri $uri/ /index.php;

        }


        # 기본 Rewrite Rule에 대한 예외 설정입니다.

        # .htaccess에서는 폴더단위로 예외를 지정했었는데 검색해보니 파일 확장자 단위로 에외를 적

용하는 방법을 추천해서, 적용해 보았습니다.

        location ~* \.(ico|css|js|gif|jpe?g|png|woff|eot|ttf|swf)(\?[0-9]+)?$ {

                expires max;

                log_not_found off;

        }


    }



이렇게 nginx 설정을 했구요
사이트 메인에 접속하면 바로 사이트메인/install/   로 이동하면서 404 에러가 뜨고있습니다. 

어떻게 해결할 수 있을가요?