-
[武汉|荣耀师兄]JS-吴胜0
unknown directive:未知的指令
"location/carrots-admin-ajax/"
G:\nginx\nginx-1.12.2/conf/nginx.conf:47
报错是在你的第47行,也就是在这里~!
原因是Nginx对文件格式要求很严格。
好好检查你就回发现你的编码格式是UTF-8-BOM。
改成utf-8就好了(或者就是你的代码写入的时候出了点小问题,比如空格多了少了之类的,重新认真写一下)
这里是我的代码:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root F:\help\bianma;
index index.html index.htm;
}
location /carrots-admin-ajax/{
proxy_pass http://dev.admin.carrots.ptteng.com/;
}
编辑于2018-09-13
- 去第 页