为什么此规则会导致 sitemap.xml 出现 404 错误?

为什么此规则会导致 sitemap.xml 出现 404 错误?

我使用 seo 框架生成 sitemap.xml。在我的 nginx 配置文件中添加以下规则会引发 404 错误。我该如何修复此问题?

location ~* \.(xml|xsl)$ {
    add_header Cache-Control “no-cache, no-store, must-revalidate, max-age=0”;
    expires -1;
}

相关内容