我有这个nginx配置
location /upload/images {
rewrite "/upload/images/(.*)" /upload/images/index.php?path=$1 last;
}
似乎我在jelastic的编辑器没有识别路径后面的=等号,编辑器没有很好地格式化我的代码并且代码不可读。 是否有另一种方法可以在最后一句中使用等号。
我试着把URL:
"/upload/images/index.php?path=$1 last";
但没有改变。
即便如此:
"\=" or "/="
没有改变编辑器格式化代码的方式。
答案 0 :(得分:1)
您似乎忘了为请求设置根目录。 请使用以下位置栏:
location /upload/images {
root /var/www/webroot/ROOT;
rewrite "/upload/images/(.*)" /upload/images/index.php?path=$1 last;
}