How to generate Sitemap manually

Search on google there are some free sitemap generators up to 500 pages.
 
Does anyone know how I can generate a sitemap manually?

Why you want to generate it manually? You can use "sitemap generator" term in google search and use any of those.

and after that you can edit it manually if you want by opening it on notepad++, or notepad.
 
Just install an SEO plugin
The sitemap generator is built-in
 
A sitemap is an XML file that lists the URLs for a site. It also allows website owners to include additional information about each URL, when it was last updated, how often it changes, and how important it is in relation to other URLs on the site. This allows search engines to crawl the site more efficiently and find URLs that may be isolated from the rest of the site’s content.
 
You can use All in One SEO plugins. With All in One SEO, you can automatically generate a custom sitemap
 
Why you want to generate it manually? You can use "sitemap generator" term in google search and use any of those.

and after that you can edit it manually if you want by opening it on notepad++, or notepad.

Some people are just kinky like that.
 
You can create xml sitemap using any free online xml sitemap generator website. But why do you want to do it manually? You need to tell us the reason so that we can help.

If you use a plugin like Yoast or AIOSEO, it can generate and maintain xml sitemap for you. Every time you create a new page in your website it will be automatically added in the xml. If you generate sitemap manually then you will have to do this task manually every time.
 
Guys it's not funny to answer a question with such a way, I have been in this situation before .
Generating thousands of html pages manually need another way to make your xml done.
Not everyone are using wp or some well known cms for noobs, people are building their own method and need to be done differently.
The answer is :
You need to scrape the directory of your static files and add the base_url + directory + html.page
And grab the rfc sitemap xml model, duplicate every line of URL with description and some data.
Plenty of software are available in github.
It depends on the language your pages are built in.
 
  1. Create a text file and save it with a .xml extension (ie. sitemap.xml)
  2. First lines of the file <?
  3. Create an entry for each URL. The <loc> tag is required, the others are optional.
  4. Last line of the file </urlset>
  5. Upload the file to your server and then submit it to the search engines.
 
Back
Top