Redirect /docs to the right page

I've hit this a few times where I want to get to docs so I take whatever
my urlbar gives me and strip out the actual page so I can get to the
root, however that's a 404.

This introduces a super easy way to redirect, which could be handy in
the future as docs get rewritten.

I would much rather do this with a real htaccess file or even just
handle 404s gracefully, but that's not currently an option with GitHub
pages (since we generate our own and don't use a custom domain).
This commit is contained in:
Paul O’Shannessy
2013-09-03 13:25:23 -07:00
parent e11c4ecbaf
commit ba460de7ed
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<html>
<head>
<meta http-equiv="refresh" content="0; {{ page.destination }}">
</head>
<body></body>
</html>

4
docs/docs/index.html Normal file
View File

@@ -0,0 +1,4 @@
---
layout: redirect
destination: getting-started.html
---