Page 1 of 1

ubuntu sitemap generator ?

Posted: 01 Aug 2022 21:53
by exxos
Is there any simple way searching the html folders on my server for html pages and generating a xml map for google ?

I'm constantly hitting dead ends and broken links in my Google searches. Currently I am trying free online xml generators, but I think they are getting stuck for some reason than just or not completing :roll:

Re: ubuntu sitemap generator ?

Posted: 02 Aug 2022 07:24
by sporniket
Don't know the format, but the starting point would be something like that, on the root of your site :

Code: Select all

find . -name "*.html"

Re: ubuntu sitemap generator ?

Posted: 02 Aug 2022 10:33
by exxos
sporniket wrote: 02 Aug 2022 07:24 Don't know the format, but the starting point would be something like that, on the root of your site :

Code: Select all

find . -name "*.html"
Cool thanks. Gives me a list to work with at least.

EDIT:

ahhh, Doing it this way is not going to be as simple as I thought. Because there is a lot of "hidden" pages on the server which are not public view and they get mixed in as well. D'oh!