yii 백엔드에서 독립적인 하위 도메인 이름을 구성하는 방법

不言
풀어 주다: 2023-04-02 11:40:02
원래의
2547명이 탐색했습니다.

이 글에서는 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿