Nginx 错误:未知指令重写

发布于 2024-12-11 11:22:09 字数 254 浏览 0 评论 0原文

我的 nginx.conf 中有一个重写:

server {
  server_name example.com;
  rewrite ^/(.*) http://www.example.com/$1 permanent;
}

但返回此错误:未知指令“rewrite”

PS:我已经用passenger安装了nginx。

你能帮助我吗?

I have a rewrite in my nginx.conf:

server {
  server_name example.com;
  rewrite ^/(.*) http://www.example.com/$1 permanent;
}

But return this error: unknown directive "rewrite".

PS: I've installed nginx with passenger.

Can you help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

木有鱼丸 2024-12-18 11:22:09

检查 nginx -V 的输出。如果你看到 --without-http_rewrite_module 选项,那么你在构建 nginx 时可能没有安装 pcre 开发包,因此它禁用了重写模块。如果是这种情况,您需要安装 pcre 开发包(如何执行此操作取决于您的发行版)并重建 nginx。

Check the output of nginx -V. If you see the option --without-http_rewrite_module, then you probably didn't have the pcre development package installed when you build nginx, and so it disabled the rewrite module. If that's the case, you'll need to install the pcre devel packages (how to do this depends on your distro) and rebuild nginx.

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