yii 2.0 pathinfo 형식 접근 설정 방법

1551 단어 yii2pathinfo
yii 2.0 기본 접근 형식 은 dxr.com/index.php?r=index/list 입 니 다.일반적으로 저 희 는 pathinfo 형식 으로 접근 하도록 설정 합 니 다.dxr.com/index/list 는 사용자 습관 에 더욱 부합 합 니 다.
구체 적 인 설정 방법 은:
설정
config 디 렉 터 리 에 있 는 웹.php 를 열 고$config=['components'=>[여기에 추가]에 추가 합 니 다:

'urlManager' => [
 'enablePrettyUrl' => true,
 'showScriptName' => false,
 'rules' => [
 ],
],

이 때 yii 2.0 은 pathinfo 형식 으로 접근 할 수 있 습 니 다.이 때 접근 할 수 없 으 면 계속 내 려 다 보 세 요.
2.웹 서버 설정.
1.apache 라면 입구 파일(index.php)이 있 는 디 렉 터 리 아래 에 텍스트 파일 을 새로 만 들 고 이 어'htaccess'로 저장 합 니 다.메모 장 으로 이 파일 을 열 어 추가 합 니 다.

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
저장 하면 됩 니 다.
2.nginx 라면 nginx 프로필 에 추가:

server {
 listen    80;
 server_name localhost;

 location / {
 root  E:/wwwroot/yii2.0;
 index index.html index.php;
 if (!-e $request_filename){
  rewrite ^/(.*) /index.php last;
 }
 }

 location ~ \.php$ {
 root      E:/wwwroot/yii2.0;
 fastcgi_pass  127.0.0.1:9000;
 fastcgi_index index.php;
 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
 include    fastcgi_params;
 }
}

3.웹 서버 를 다시 시작 합 니 다.
이로써 배치 가 완료 되 었 습 니 다.

좋은 웹페이지 즐겨찾기