이 글에서는 yii 백엔드에서 독립적인 하위 도메인 이름을 구성하는 방법을 주로 소개합니다. 이제 필요한 친구들이 참고할 수 있도록 공유하겠습니다.
I 여기에 설치했습니다. Pagoda Panel과 통합된 WNMP 환경입니다. 공식 홈페이지에서 볼 수 있지만, YII를 사용하는 초보에게는 골치 아픈 부분이기도 합니다. 드디어 구해서 녹음했습니다.
먼저 하위 도메인 이름 확인: back.domain.com;
Pagoda 패널을 사용하여 domain.com 웹사이트 만들기
Find Nginx 구성 폴더 conf/vhost. 이 폴더에 이미 domain.com.conf 파일이 있습니다. 이름을 back.domain.com.conf로 바꾸세요. :
#START-SITEserver { listen 80; server_name yii.com; access_log logs/yii.com.access.log; root D:/wwwroot/yii; index index.php default.php index.html index.htm default.html default.htm; include rewrite/yii.com.conf; location ~ \.php$ { root D:/wwwroot/yii; fastcgi_pass 127.0.0.1:4570; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }#END-SITE
YII 공식 홈페이지 소개 참고 https://github.com/yiisoft/yii2-app-advanced/blob/master/docs/guide-zh-CN/start-installation .md, 간단히 수정해서 수정된 back.domain.com.conf 파일 코드
#START-SITEserver { charset utf-8; client_max_body_size 128M; listen 80; ## listen for ipv4 #listen [::]:80 default_server ipv6only=on; ## listen for ipv6 server_name back.yii.com; ##前台域名 root D:/wwwroot/yii/backend/web; ##这是前台index地址 index index.php; #access_log D:/wwwroot/yii/access.backend.log main; #error_log D:/wwwroot/yii//error.backend.log; location / { # Redirect everything that isn't a real file to index.php try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { root D:/wwwroot/yii/backend/web; fastcgi_pass 127.0.0.1:4570; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } #error_page 404 /404.html; location ~ /\.(ht|svn|git) { deny all; } }#END-SITE
위 내용은 이 글의 전체 내용입니다. 모두의 학습에 도움이 되었으면 좋겠습니다. 더 많은 관련 콘텐츠 PHP 중국어 웹사이트로!
관련 권장 사항:
Yii1.1 프레임워크 로그 구성 사용위 내용은 yii 백엔드에서 독립적인 하위 도메인 이름을 구성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!