This is my first tutorial on setting up your own website using xampp and apache and programming a simple webpage.
Xampp Download: https://www.apachefriends.org/downloa...
Visual Studio Code Download: https://code.visualstudio.com/
.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [NC,L]