TP5 는 Nginx 환경 에서 url 의 index. php 를 제거 합 니 다.

465 단어 ThinkPHPNginx
첫 번 째 단계: htaccess 파일 을 다음 과 같이 수정 합 니 다.

  Options +FollowSymlinks -Multiviews
  RewriteEngine On
 
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]

두 번 째 단계: nginx. conf 의 수정 location / {} 부분
location / {
    if (!-e $request_filename){
        rewrite ^/(.*)$ /index.php?s=/$1 last;
    }
}

좋은 웹페이지 즐겨찾기