diff options
author | http://thomaslevine.com/ <Thomas@web> | 2014-03-02 17:58:41 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2014-03-02 17:58:41 -0400 |
commit | 8279db286259c157a4db14e9113fc4b4d944cbb6 (patch) | |
tree | 25af204ef9521f161b2123a1013307c923981c45 /doc/bugs | |
parent | 7e923afee875c58f4c6721ca0854975849432cce (diff) | |
download | ikiwiki-8279db286259c157a4db14e9113fc4b4d944cbb6.tar ikiwiki-8279db286259c157a4db14e9113fc4b4d944cbb6.tar.gz |
Diffstat (limited to 'doc/bugs')
-rw-r--r-- | doc/bugs/redirect.mdwn | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/bugs/redirect.mdwn b/doc/bugs/redirect.mdwn index 5061a7940..521c29f9e 100644 --- a/doc/bugs/redirect.mdwn +++ b/doc/bugs/redirect.mdwn @@ -3,14 +3,10 @@ I suppose this isn't technically a bug, but whetever. I want symbolic links to be rendered as HTTP redirects. For example, if we do this, -``` -touch foo.mkdwn -ln -s foo.mkdwn bar.mkdwn -git push baz.branchable.com -``` + touch foo.mkdwn + ln -s foo.mkdwn bar.mkdwn + git push baz.branchable.com then the following command should print 302 -``` -curl -o /dev/null -s -w "%{http_code}" http://baz.thomaslevine.com/bar/ -``` + curl -o /dev/null -s -w "%{http_code}" http://baz.thomaslevine.com/bar/ |