栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux

nginx针对一个域名多个php版本访问不同的目录

Linux 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

nginx针对一个域名多个php版本访问不同的目录

test.com/test1 就会走php5.5版本

test.com/test2 就会走php5.2版本

test.com  默认走php7.0版本

    location /test1/ {
                 rewrite ^/test1/(w+)/(d+).html$  /test1/$1/test1.php?qh=$2 last;
                 rewrite ^/test1/(w+)/p(d+)/$ /test1/$1/test1.php?topage=$2 last;
                 root /web/test.com/;
        location ~ .*.(php|php5)?$ {
                    fastcgi_pass  127.0.0.1:9000; #php5.5
                    fastcgi_index index.php;
                    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                    include fastcgi_params;
        }
    }

    location /test2/ {

        include rewrite.txt;   #因为test2的伪静态规则太多,所以把test2伪静态都写入到rewrite.txt了,直接include引用即可
        root /web/test.com/;
        location ~ .*.(php|php5)?$ {
                    fastcgi_pass  127.0.0.1:9001;  #php5.2
                    fastcgi_index index.php;
                    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                    include fastcgi_params;
        }

   }



    location ~ .*.(php)?$ {   #通用配置
                fastcgi_pass  127.0.0.1:9003; #php7.0
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
    }

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/826212.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号