Skip to content

Instantly share code, notes, and snippets.

@cdpjenkins
Last active August 29, 2015 14:02
Show Gist options
  • Save cdpjenkins/8d815e7e8c99506e5344 to your computer and use it in GitHub Desktop.
Save cdpjenkins/8d815e7e8c99506e5344 to your computer and use it in GitHub Desktop.
(defn- wrap-silly-redirect [handler]
(fn [req]
(if-let [path-info (:path-info req)]
(if (= path-info "")
(resp/redirect (str (:uri req) "/"))
(handler req))
(handler req))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment