Notifications
Clear all
Ubuntu
2
Posts
2
Users
0
Likes
1,869
Views
Apr 17, 2020 12:33 am
i'm in Nginx ubuntu `18 server in Vultr. I can't view Site map. I searched about this and found .htaccess solution. but Nginx does not support for that.
1 Reply
Apr 17, 2020 12:35 am
Open Nginx Conf file
sudo nano /etc/nginx/nginx.conf
and put this code to it
# Rewrites for XML Sitemap rewrite ^/sitemap_index.xml$ /index.php?sitemap=1 last; rewrite ^/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 last;