nginx反向代理Apache伪静态
server {
listen 80;
server_name test.com;
root "D:/test.com/";
location / {
index index.html index.htm index.php;
}
location ~ \.php(.*)$ {
rewrite ^/(.*)$ index.php/$1 break;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://test.com:8080;
}
}
我想通过nginx的80端口反向代理到apache的8080端口,怎么实现.php的伪静态呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows下没必要用nginx反代Apache
因为Windows下的nginx效率较低,不建议用于生产环境
直接用Apache跑php和静态就行