怎么确定nginx是否开启rewrite模块
时间: 2023-10-14 16:16:15 浏览: 207
nginx之rewrite
可以通过以下命令确定nginx是否开启了rewrite模块:
```
nginx -V
```
该命令会输出nginx的版本信息及编译参数。如果rewrite模块被编译进nginx中,可以在编译参数中看到`--with-http_rewrite_module`。例如:
```
nginx version: nginx/1.18.0
built by gcc 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)
built with OpenSSL 1.1.1f 31 Mar 2020
TLS SNI support enabled
configure arguments: --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_stub_status_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_auth_request_module --with-http_random_index_module --with-http_secure_link_module --with-http_slice_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-g -O2 -fdebug-prefix-map=/build/nginx-8wYkZT/nginx-1.18.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -fPIC' --with-openssl-opt=no-nextprotoneg
```
如果看到`--with-http_rewrite_module`,则代表nginx已经开启了rewrite模块。如果没有看到,需要重新编译nginx并加入该模块。
阅读全文