赞
踩
实现nginx防盗链,报错
[root@lnmp1 conf]# nginx -t
nginx: [emerg] invalid number of arguments in "rewrite" directive in /usr/local/nginx/conf/nginx.conf:162
nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed
[root@lnmp1 conf]# nginx -t
nginx: [emerg] invalid number of arguments in "rewrite" directive in /usr/local/nginx/conf/nginx.conf:162
nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed
/*大概意思就是:nginx在本地文件路径的配置文件中存在了错误,导致无法继续运行。
*具体错误定位在了conf配置文件的第162行。
*错误原因:“rewrite”指令中存在无效数量的参数。
*/
rewrite ^\ http://www.daolian.org;
我把Linux的反斜杠和正斜杠弄错了,应该使用的是 /
Linux和Unix:
“/”表示路径,“\”表示转义
Linux中\和/的区别,正斜杠和反斜杠的区别
修改正确之后,错误解决
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。