唰唰冷呵映 发表于 2024-9-11 15:05:35

使用VPS云服务器Nginx实现动态和静态页面的分离

动态页面。
样例配置如下:
#cat /usr/local/nginx/conf/nginx.conf
……
server{
listen80;
server_namelocalhost;
location/{
//识别静态页面(除了 PHP外的其他所有页面)
roothtml;
indexindex.html;
}
location~*\.php${
//识别动态页面
roothtml;
fastcgi_pass127.0.0.1:9000;
include fastcgi.conf;
}
}
页: [1]
查看完整版本: 使用VPS云服务器Nginx实现动态和静态页面的分离