Nginx 错误:未知指令重写
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 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.