
Something to write here.
How WordPress Works
https://www.wpbeginner.com/wp-tutorials/how-wordpress-actually-works-behind-the-scenes-infographic/
Install WordPress: https://wordpress.org/support/article/how-to-install-wordpress/
- Access subdomain’s folder @ public_html/<subdomain_name>
- Download wordpress,
- Extract, then upload contents inside wordpress folder to subdomain’s folder
- Extract wordpress contents in folder
- In web browser, go to <subdomain_name>.domainname.com/wp-admin to install WordPress
The placeholder page is index.html in public_html/<(sub)domain name>
To remove the placeholder page of subdomain, create a .htaccess with the below code (or add the code if .htaccess already exists) in the subdomain folder (e.g. …/public_html/<subdomain>):
# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Check site’s date & time @ Settings > General in your site’s wpress Dashboard