nginx:未知指令"location"

sco*_*ohh 3 nginx

这是我的代码(从第35行开始):

location /

{

  index index.php;
  root  /home/body;

  if ($request_filename !~ (js|css|images|robots\.txt|index\.php.*) ) {
    rewrite ^/(.*)$ /index.php/$1 last;
  }
}
Run Code Online (Sandbox Code Playgroud)

这是错误:

[emerg]: unknown directive "location" in /opt/nginx/conf/nginx.conf:35
Run Code Online (Sandbox Code Playgroud)

任何人都可以帮忙解决这个问题吗?提前致谢.

ebs*_*sbk 13

确保位于服务器块内的location指令:

http {
...
    server {
        ...
        location ...
    }
}
Run Code Online (Sandbox Code Playgroud)