``` ### 2. Step-by-Step Upload to Hostinger Now that you have the clean, updated code, follow these exact steps to make your site live. **Phase 1: Preparing Files** 1. **Create a file on your computer:** Open Notepad (Windows) or TextEdit (Mac). 2. **Paste the code:** Copy the **entire code block above** and paste it into the file. 3. **Save as `index.html`:** Make sure you select "All Files" in the "Save as type" dropdown so it saves as `.html` and not `.txt`. 4. **Create another file:** Create a new empty file. 5. **Paste this routing code:** ```apacheconf RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L]