Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

sitemap-category-name.xml = Not Found. normal?

VariStopVariStop New
edited April 2012 in Vanilla 2.0 - 2.8

Hi, I just installed the new version of the sitemap plugin.
The main link seems to work:
http://www.varistop.com/forum/sitemapindex.xml
But when I select one of the category link, for example:
http://www.varistop.com/forum/sitemap-category-general.xml
My browser shows a 'Page Not Found'

Is it normal?

It doesn't seem to be normal. What is causing this? The Sitemaps addon is useless with this problem.

Answers

  • solonovasolonova New
    edited May 2012

    How could generate sitemaps with all discussions reference? Thank you

  • Are you sure you did not disable that plugin on your vanilla forum? Secondly, I think you don't have a general category anymore on your forum. So, that XML should be absent.

  • semplonsemplon Malang New

    this is not normal. Google Webmasters Tools will read it as error.

    This is what happen at my site when i submit the sitemap at GWT. Please check your hosting rewrite rules. this is my Nginx config at my site.

     location / {
                    try_files $uri @rewrite;
            }
    
            location = /sitemapindex.xml {
                    try_files $uri @rewrite;
            }
    
            location ~* /sitemap-(.*).xml {
                    try_files $uri @rewrite;
            }
    
            location @rewrite {
                    rewrite ^ /index.php?p=$uri&$args last;
            }
    
    
Sign In or Register to comment.