Join the Webstudio community

Updated 2 weeks ago

/sitemap:number.xml or /sitemap{number}.xml would be very useful

I couldn't find my old post, so I start a new one.

Currently I can only do /:number/sitemap.xml
But that doesn't work with sitemaps, they need to be at the root. So I need the dynamic :number in between sitemap and .xml.

website.com/sitemap1.xml
website.com/sitemap2.xml
website.com/sitemap3.xml

And add those to the main sitemap
website.com/sitemap.xml

Right now it means duplicating a static xml page manually and reference those back into the main sitemap if you're having more than 50.000 urls in your webstudio project that you want to be indexed by google and others.

I love webstudio's great power of the ability to create a million pages theoretically. This is where I bump into practically speaking.
O
R
24 comments
Afaik you can link sitemaps from a single sitemap
how would you do this?


website.com/sitemap1.xml
website.com/sitemap2.xml
website.com/sitemap3.xml

How does google know that you have sitemap1, 2, 3? It has to be linked from the /sitemap.xml anyways and when its linked the url structure doesn't matter
In the main sitemap on https://website.com/sitemap.xml something like this:

Plain Text
<sitemapindex xmlns=http://www.sitemaps.org/schemas/sitemap/0.09">
  <sitemap>
    <loc>https://website.com/sitemap1.xml</loc>
    <lastmod>2025-03-19</lastmod>
  </sitemap>

  <sitemap>
    <loc>https://website.com/sitemap2.xml</loc>
    <lastmod>2025-03-19</lastmod>
  </sitemap>

  <sitemap>
    <loc>https://website.com/sitemap3.xml</loc>
    <lastmod>2025-03-19</lastmod>
  </sitemap>
</sitemapindex>
I don't see why this would be a problem

Plain Text
    <loc>https://website.com/whatever/sitemap.xml</loc>
Quote from the developers.google link:
The important thing is that Sitemaps not contain URLs from parent directories or completely different directories—if that happens, we can't be sure that the submitter controls the URL's directory, so we can't trust the metadata.
So all the pages need to be in the /whatever directory.
so bascially they want a sitemap to reference urls from the same directory
and to avoid this problem you would need to have the same directory in your urls
Whatever the directory is
The amount of pages can grow daily. It'd be nice that the sitemaps can grow with those 50k limits
btw maybe it already works like this /post/sitemap:number.xml haven't tried
No that's what I'm hoping for haha
let me ask around what can work
We checked, the limitation is not even us directly, its react-router https://github.com/remix-run/react-router we are using
So this type of path won't work.
there must be something else one can do
Thanks for getting back at this. Too bad.
I'll see if I can find another way.
Hey @Oleg Isonen
Probably not, but going to ask anyway:
Any way if with the javascript expressions I can remove the text from the variable and turn it into a number? sitemap-1.xml turning that into 1?
If it'd be possible I might have cracked the code
Nope. How about making it actually a directory and putting all it's routes into that directory?
I already have a directory in the main sitemap.
Just trying to figure out how to create these sub sitemaps dynamically.
I could try linking main with subs in baserow and using lookups, allthough that's quite a hard job to do with this amount of records.
I mean /:directory/sitemap.xml works if you use /:directory/some-page path for the pages
Yes I started with that. But then the sitemaps can only reach /:directory/item and not /item.
But I think I've actually figured it out now!
Add a reply
Sign up and join the conversation on Discord