nginx 无法访问 Vanilla 论坛 sitemapindex.xml 文件

Posted

技术标签:

【中文标题】nginx 无法访问 Vanilla 论坛 sitemapindex.xml 文件【英文标题】:Vanilla Forums sitemapindex.xml file inaccessible by nginx 【发布时间】:2017-02-16 23:17:59 【问题描述】:

我的论坛安装在url:example.com/forums

我使用 nginx 和 Vanilla 来“美化”网址。我已经设置了

/forum/conf/config.php, “RewriteUrls” to “True”.

在我的 nginx.conf 中:

location /forums 
    index index.php index.htm index.html;
    location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ 
        access_log off;
        log_not_found off;
        expires 30d;
    

    try_files $uri $uri/ @forums;


location @forums 
    rewrite ^/forums(.+)$ /forums/index.php?p=$1 last;

问题是我安装了原版论坛的sitemap plugin。

生成的站点地图应该位于

example.com/forums/sitemapindex.xml

但是当我在那里导航时,nginx 给了我一个 404。

我该如何解决这个问题?

【问题讨论】:

【参考方案1】:

问题在于 URI /forums/sitemapindex.xml 正在由 location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ 块处理,而不是转发到 /forums/index.php

如果您不提供静态 .xml 文件,您可以简单地从正则表达式中删除 |xml 术语。

否则,您需要将该 URI 设为特殊情况,例如:

location = /forums/sitemapindex.xml 
    rewrite ^ /forums/index.php?p=/sitemapindex.xml last;

【讨论】:

我错误地专注于重写。谢谢!这解决了它。

以上是关于nginx 无法访问 Vanilla 论坛 sitemapindex.xml 文件的主要内容,如果未能解决你的问题,请参考以下文章

ClearDb + Azure:Vanilla 论坛安装真的很慢

无法让 vanilla JS onreadystatechange 函数/readyState 4 工作

如何使用 Vanilla jsconnect 实际设置 SSO?

从香草论坛侧边栏中删除子类别

环境整理(prodsituattestpredevfat )

配置LNMP发布论坛网站