You need to add a new page to the site, or rather

/ blog / Inside it will then be separate pages.

Main question. If you add the blog folder to the root of the site, and index.html in it, it will be /blog/index.html

The link should be / blog or / blog /

How to do this?

1 answer 1

To do this, declare the index.html file index. Then if there is a file with the same name in the directory, then accessing the directory will automatically download this file.

Usually, by default on almost all servers, index.html is designated as an index file, but for some reason this may not be the case. In the Apache Web server, the DirectoryIndex directive is responsible for the index file. You can list several index files separated by commas (files on the left have priority)

 DirectoryIndex index.html index.php 

In the nginx Web server, the index directive is used to set the index file.

 location / { index index.html index.php; }