我是靠谱客的博主 成就白开水,最近开发中收集的这篇文章主要介绍nginx配置多个网址,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

实战Nginx与PHP(FastCGI)的安装、配置与优化:http://ixdba.blog.51cto.com/2895551/806622

Nginx配置文件详细说明:http://www.cnblogs.com/xiaogangqq123/archive/2011/03/02/1969006.html

 

由于做测试用,所以通过修改hosts文件来达到对浏览器输入不同网址输出不同地址....(语言表达不强,自己能理解)

 

hosts文件配置,将域名转接

 

127.0.0.1       localhost

139.217.2.21   www.qq.com

139.217.2.21   www.baidu.com

139.217.2.21   www.sina.com.cn

 

 修改nginx的配置文件,给这三个网址分别加入一个server,如下写三遍,修改其中一些参数即可

 

server {

        listen 80;

        server_name  qq.com www.qq.com;

        root /var/www/site1;

        index index.php index.html index.htm;

 

         location / {

 

            if (!-e $request_filename){

                rewrite ^(.*)$ /index.php?s=$1 last;

                break;

             }

        }

        location ~* .php$ {

                fastcgi_pass unix:/var/run/php5-fpm.sock;

                fastcgi_index index.php;

                include fastcgi_params;

 

                set $path_info "" ;

                set $real_script_name $fastcgi_script_name;

                if ($fastcgi_script_name ~ "^(.+?.php)(/.+)$" ){

                        set $real_script_name $1;

                        set $path_info $2;

                }

                fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;

                fastcgi_param SCRIPT_NAME $real_script_name;

                fastcgi_param PATH_INFO $path_info;

        }

}

转载于:https://www.cnblogs.com/sujia/p/nginx2.html

最后

以上就是成就白开水为你收集整理的nginx配置多个网址的全部内容,希望文章能够帮你解决nginx配置多个网址所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(86)

评论列表共有 0 条评论

立即
投稿
返回
顶部