Redirect with HTML

📆 ·
guides.html
<!-- Redirects from /guides to /guides/introduction -->
<html>
<head>
<meta http-equiv="refresh" content="0; url=/guides/introduction" />
</head>
<body></body>
</html>

Use Case

This is a simple way to redirect users to another page without using JavaScript. It’s especially useful for documentation sites, landing pages, or static hosting setups.

This is exactly what I did for eternalvault.app/guides ↗️ to redirect to eternalvault.app/guides/introduction ↗️.