The server is built on ngnix. There are sitemap files at the root of the site, but when you try to access the address in the browser to view the map, for example http://site.com/1_index_sitemap.xml, the white page with "File not found."
Error log:
[error] 2215 # 0: * 55416 FastCGI sent in stderr: "Primary script unknown" while reading response message from upstream, client: 195.191.159.197, server: site.com, request: "GET /1_index_sitemap.xml HTTP / 1.1" upstream: "fastcgi: //127.0.0.1: 9000" gsitemap "
Ngnix config:
server { listen 93.170.121.210:80; server_name site.com www.site.com; root /home/admin/web/site.com/public_html; index index.html index.htm index.php; location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_buffer_size 256k; fastcgi_buffers 8 256k; include fastcgi_params; } }