๐Ÿš€ The One Rule For Clean URLs
Every page is a folder containing an index.html. Never upload a file named team.html. Instead create a folder called team/ with index.html inside it. This gives you reefremix.com/team with no .html in the URL โ€” on any host, forever, no configuration needed.
Folder Structure
๐Ÿ“ public_html layout on Hostinger
public_html/ โ”œโ”€โ”€ index.html โ†’ reefremix.com โ”œโ”€โ”€ reef-remix-logo.png โ†’ shared logo (linked as /reef-remix-logo.png) โ”œโ”€โ”€ .htaccess โ†’ safety net rewrite rules (see below) โ”‚ โ””โ”€โ”€ team/ โ”œโ”€โ”€ index.html โ†’ reefremix.com/team โ”œโ”€โ”€ rr-styles.css โ†’ shared stylesheet (linked as /team/rr-styles.css) โ”œโ”€โ”€ style-guide/ โ”‚ โ””โ”€โ”€ index.html โ†’ reefremix.com/team/style-guide โ”œโ”€โ”€ content-planning-system/ โ”‚ โ””โ”€โ”€ index.html โ”œโ”€โ”€ file-system/ โ”‚ โ””โ”€โ”€ index.html โ”œโ”€โ”€ workflow/ โ”‚ โ””โ”€โ”€ index.html โ”œโ”€โ”€ coppa-training/ โ”‚ โ””โ”€โ”€ index.html โ”œโ”€โ”€ character-bible/ โ”‚ โ””โ”€โ”€ index.html โ””โ”€โ”€ hosting-setup/ โ””โ”€โ”€ index.html
.htaccess Safety Net
โš™๏ธ Add this to public_html/.htaccess
If you ever accidentally upload a .html file directly instead of making a folder, this catches it and serves it at a clean URL anyway.
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^\.]+)$ $1.html [NC,L]
๐Ÿ’ก
Hostinger uses Apache โ€” .htaccess works natively. Upload it to public_html root (same level as index.html), not inside any subfolder.
How to Deploy a New Page
1
Copy the page shell
Start from the template in the Style Guide โ€” never start from scratch.
2
Build locally, save as index.html in a new folder
Folder name: lowercase, hyphens only. File inside: always index.html.
3
Upload the folder via Hostinger File Manager
hPanel โ†’ File Manager โ†’ public_html/team/ โ†’ Upload the entire folder. Or use FTP if you prefer.
4
Update the Team Hub card
Change the badge from "Coming Soon" to "Ready" in team/index.html and re-upload that file.
5
Test the clean URL
Open reefremix.com/team/[new-page] in an incognito window. If it loads, you're done.