Host Your Own Website with Xampp for Free 2022/2023 Part 1 of 3
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/download.html 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]
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/download.html 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]