>  Q&A  >  본문

TP5 배포 서버는 홈페이지만 열 수 있고 다른 페이지는 모두 404입니다.

nginx.conf

server
  {
   듣기        80;
   server_name cy.280878.com;
   root        /home/www/cy.280878.com;
   index       index.php index1.php index.htm index.html;



   #location / {
   #        if ( -f $request_filename) {
   #            break;
   #        }
   #       if ( !-e $request_filename) {
   #            다시 작성 ^(.*)$ /index.php/ 마지막 $1;
   #            break;
   #       }
   #    }


       위치 ~ .+.php($|/) {
           #fastcgi_pass unix:/dev/shm/php -cgi.sock;
           fastcgi_pass     127.0.0.1: 이 fastcgi_path_info;
           fastcgi_param    SCRIPT_FILENAME    $document_root$fastcgi_script_name;
           include        /etc/ nginx/fastcgi_params;

       }

  }


.htaccess

<IfModule mod_rewrite.c>

Options +FollowSymlinks -Multiviews

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !- f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>


首页:
http://cy.280878.com/newswork/

404页면:http://cy.280878.com/newswork/details/index.html?id=4

燕浮生若梦燕浮生若梦1878일 전1270

모든 응답(2)나는 대답할 것이다

  • (O_O)

    (O_O)2019-09-19 21:29:49

    이미지 경로가 잘못 전달되었나요?

    회신하다
    0
  • 燕浮生若梦

    해결되었습니다. 리디렉션 위치 경로 문제... 및 index.php로 인해 디렉토리 제한이 발생했습니다...

    燕浮生若梦 · 2019-09-20 15:55:01
  • 취소회신하다