"index" directive should be absolute in x 问题解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了"index" directive should be absolute in x 问题解决相关的知识,希望对你有一定的参考价值。

 修改完nginx的配置文件之后,执行nginx -t命令提示"nginx: [warn] only the last index in "index" directive should be absolute in 6 "

相关代码段为:   

技术分享

 1 server 
 2 { 
 3       listen  80; 
 4       server_name  www.web1.com; 
 5       index  index.jsp index.html index.htm 
 6       access_log /export/servers/nginx/logs/www.web1.com/access.log main; 7       error_log  /export/servers/nginx/logs/www.web1.com/error.log warn;  8       #chunkin on; 
 9       error_page 411 = @my_error;
 10      location @my_error {
 11      #chunkin_resume;
 12      }
 13      root /export/data/tomcatRoot/
 14 
 15 
 16       location / {
 17          proxy_next_upstream     http_500 http_502 http_503 http_504 error timeout invalid_header;
 18          proxy_set_header        Host  $host;
 19          proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
 20          proxy_pass              
 21          expires                 1d;
 22       }
 23       location /logs/ {
 24                 autoindex       off;
 25                 deny all;
 26       }
 27 
 28 }

发现问题没? 原来是第5行少了一个;号...技术分享

填上,解决...


以上是关于"index" directive should be absolute in x 问题解决的主要内容,如果未能解决你的问题,请参考以下文章

nginx "try_files" 中的级联 index.php

shell脚本替换文本内容

RESTful 组件

index 定义 v-for 未使用变量 实际是没有 :key="index"

Angular 6 - '"/node_modules/firebase/index"' 没有导出的成员 'functions'

jquery load()怎么解决跨域加载页面 比如$("#id").load("www.demo.com/?ct=index&ac=index") 谢