]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/redirect.mdwn
f7dac6077b0b407c02b1975775f0b933081d661c
[ikiwiki.git] / doc / bugs / redirect.mdwn
1 I suppose this isn't technically a bug, but whetever.
2
3 I want symbolic links to be rendered as HTTP redirects. For example,
4 if we do this,
5
6 ```
7 touch foo.mkdwn
8 ln -s foo.mkdwn bar.mkdwn
9 git push baz.branchable.com
10 ```
11
12 then the following command should print 302
13
14 ```
15 curl -o /dev/null -s -w "%{http_code}" http://wiki.thomaslevine.com
16 ```