redirects.ss 275 B

123456789101112
  1. (define url
  2. (case argv2
  3. ("index" "index.xhtml")))
  4. (!html
  5. (head
  6. (title "redirect:" argv2)
  7. (meta 'http-equiv "refresh"
  8. 'content `("0; url=" ,url)))
  9. (body
  10. "If you were not redirected automatically please follow this: "
  11. (a* 'href url argv2)))