I don't inherently mean the home page, since some websites redirect (domain.com to for instance). I'm not referring to the domain name either, but the webpage.
To clarify, the page which matches the domain name, such as
43 Answers
The root page on your question can be index.html, index.php or index.other_extension, as well as many other things like banana.anything, depending on how we configure the webserver, or the programming language of the webpage.
For example, if you go to , it will redirect you back to . It means this website use index.php as a default webpage.
In fact, we can change this page to anything we want, so there is no way to find out. The only way to find out is only take times to test. As you can see if you try or index.html, there was no page exist.
What is the "root" page of a website called (e.g.
superuser.com) called?
Assuming there is an actual pre-existing page, index plus a file extension (e.g. index.html, index.php, etc.) is effectively the standard name for this page (i.e. what most web servers look for by default).
However, as already mentioned in the comments, this page doesn't always exist. This can occur when:
A domain is redirected (i.e. from HTTP to HTTPS or to another domain) or proxied internally.
A domain has no ex.
indexfile and the server itself generates a given page (possibly including the "root" page of a domain).A web server (such as Apache) allows the server administrator to change or remove
indexas a name for "default" return documents.
To clarify, the page which matches the domain name, such as .
I am guessing you are aware of this, but these pages don't exist, at least as a standard (i.e. it's unlikely there is a ex. superuser.com.html, even though it could theoretically exist).
As near as I can tell, it is called the root page or root URL.
In a search for "root page" website, it comes up enough, and I didn't come across any alternative names for it.
“Root page” means the
mainweb page that appears when someone types in the root of your website’s domain. For example, would be a root web page request. (source)
Every web folder has a "default page" or "webserver directory index". (If no file is present or specified for the folder, the webserver might return a directory listing of that folder or a familiar error pagesuch as, "403 - Forbidden: Access is denied. You do not have permission to view this directory or page using the credentials that you supplied.", "404 - page not found", or "directory listing is not permitted".)
The root page of any website is the "webserver directory index" of its root folder.
If you visit , the URL in your browser changes to . (the root page). is a redirect. is the root page and the homepage.
If you visit , the URL in your browser changes to . can still be called the root page, even though it is just a rewrite or a redirect. is the home page, but I regard that as an unwise choice by the webmaster. It might have a benefit (a named page might cache better), but it definitely has penalties. I would always rather link and make shortcuts to the root page, , because that URL "has to work", and it cannot be renamed. (Well, they could change to , but that is a separate issue.) If I link to , and then someone updates the website, all kinds of stupid things can happen. They should make a redirect (or make 404s in the root folder redirect) to the right page, but I know I can't count on that -- I've seen dozens of broken homepage links. could serve a blank page, a broken page, or (worst) a stale version of the homepage.