🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# Indices Exists /索引存在 原文链接 : [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-exists.html](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-exists.html) 译文链接 : [Indices Exists /索引存在](/pages/viewpage.action?pageId=4882795) 贡献者 : [Le-Mon](/display/~tanwen) 注意:涉及翻译内容: Index-索引;types-类型;mapping-映射;aliases-别名;shards-分片;replicas-副本 用来检查如果 index ( indics )是否存在。例如: ``` curl -XHEAD 'localhost:9200/twitter?pretty' ``` HTTP状态码表示index存在与否。404意味着它不存在,200即存在。