What's the settings for SITEMAP.XML on nginx?

hi Guys, my sitemap dont work on nginx , what did i miss?

Comments

  • Hello, This is my sites nginx config. try this

            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.