>  기사  >  백엔드 개발  >  phpstudy의 nginx 구성 가상 호스트 방법

phpstudy의 nginx 구성 가상 호스트 방법

小云云
小云云원래의
2018-03-16 14:40:147783검색

本文主要和大家分享phpstudy的nginx配置虚拟主机方法,希望能帮助到大家。

打开目录 nginx-conf

server {
        listen       80;
        server_name  www.restfulapi.com/;      //自己配置的虚拟域名
        root   "E:/phpstudy/WWW/restfulapi/restful";//写到你指向的最终rewrite地址
        location / {
            index  index.html index.htm index.php;
            #autoindex  on;
            if ($request_filename !~ (static|robots/.txt|index/.php.*)) {
                rewrite ^/(.*)$ /index.php?$1 last;
                break;
                }


        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
}、

配置host,添加自己域名配置,例如

127.0.0.1 www

127.0.0.1 www.restfulapi.com
127.0.0.1 www.api.com
192.168.1.103 oatest1.com

重启nginx服务器

相关推荐:

win10 apache配置虚拟主机后localhost无法使用

关于php之Apache配置虚拟主机

php与apache的集成、配置虚拟目录、配置虚拟主机

위 내용은 phpstudy의 nginx 구성 가상 호스트 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.