> 백엔드 개발 > PHP 튜토리얼 > nginx 虚拟主机配置指向不同目录,访问的时候全部指向网站跟目录

nginx 虚拟主机配置指向不同目录,访问的时候全部指向网站跟目录

WBOY
풀어 주다: 2016-06-06 20:33:35
원래의
1658명이 탐색했습니다.

在win8下配置nginx虚拟主机
host文件:

<code>127.0.0.1 z.vilay.com
127.0.0.1 v.vilay.com
</code>
로그인 후 복사
로그인 후 복사

nginx.conf文件:

<code>#user nobody; 
worker_processes 1; 
#error_log logs/error.log; 
#error_log logs/error.log notice; 
#error_log logs/error.log info; 
#pid logs/nginx.pid; 
events { 
worker_connections 64; 
} 
http { 
    include mime.types; 
    default_type application/octet-stream; 
    sendfile on; 
    keepalive_timeout 65; 
    #gzip on; 
    include vhost/*.conf; 
} 
</code>
로그인 후 복사
로그인 후 복사

nginx/vhost下两个文件v.conf,default.conf
v.conf文件:

<code>server {
        listen       80;
        server_name  v.vilay.com;
        root   F:/www/vtest;

        #charset koi8-r;

        access_log  logs/v.access.log;

        location / {

            index  index.html index.htm index.php;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
            deny  all;
        }
    }
</code>
로그인 후 복사
로그인 후 복사

default.conf文件:

<code>    server {
        listen       80;
        server_name  z.vilay.com;
        root   F:/www;

        #charset koi8-r;

        access_log  logs/default.access.log;

        location / {

            index  index.html index.htm index.php;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
            deny  all;
        }
    }
</code>
로그인 후 복사
로그인 후 복사
<code>nginx重启访问的时候全部指向了网站根目录F:/www底下
</code>
로그인 후 복사
로그인 후 복사

回复内容:

在win8下配置nginx虚拟主机
host文件:

<code>127.0.0.1 z.vilay.com
127.0.0.1 v.vilay.com
</code>
로그인 후 복사
로그인 후 복사

nginx.conf文件:

<code>#user nobody; 
worker_processes 1; 
#error_log logs/error.log; 
#error_log logs/error.log notice; 
#error_log logs/error.log info; 
#pid logs/nginx.pid; 
events { 
worker_connections 64; 
} 
http { 
    include mime.types; 
    default_type application/octet-stream; 
    sendfile on; 
    keepalive_timeout 65; 
    #gzip on; 
    include vhost/*.conf; 
} 
</code>
로그인 후 복사
로그인 후 복사

nginx/vhost下两个文件v.conf,default.conf
v.conf文件:

<code>server {
        listen       80;
        server_name  v.vilay.com;
        root   F:/www/vtest;

        #charset koi8-r;

        access_log  logs/v.access.log;

        location / {

            index  index.html index.htm index.php;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
            deny  all;
        }
    }
</code>
로그인 후 복사
로그인 후 복사

default.conf文件:

<code>    server {
        listen       80;
        server_name  z.vilay.com;
        root   F:/www;

        #charset koi8-r;

        access_log  logs/default.access.log;

        location / {

            index  index.html index.htm index.php;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
            deny  all;
        }
    }
</code>
로그인 후 복사
로그인 후 복사
<code>nginx重启访问的时候全部指向了网站根目录F:/www底下
</code>
로그인 후 복사
로그인 후 복사

目测这里有问题

<code>fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
</code>
로그인 후 복사

可以改成这样试试

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