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

[复制链接] |主动推送
查看49 | 回复0 | 2024-9-11 15:05:35 | 显示全部楼层 |阅读模式
动态页面。
样例配置如下:
#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;
}
}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则