+
95
-

nginx如何单独设置子目录运行不用版本的php

nginx如何单独设置子目录运行不用版本的php?

网友回复

+
15
-

location  ~ ^/php55/.*.(php|php5)$ {
    fastcgi_pass unix:/dev/shm/php55-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
}
location  ~ ^/php54/.*.(php|php5)$ {
    fastcgi_pass un...

点击查看剩余70%

我知道答案,我要回答