nginx反向代理Apache伪静态

发布于 2022-09-07 15:56:42 字数 477 浏览 31 评论 0

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囍孤女 2022-09-14 15:56:42

Windows下没必要用nginx反代Apache
因为Windows下的nginx效率较低,不建议用于生产环境
直接用Apache跑php和静态就行

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文