我使用黑色。
拥有:
(defpage "/welcome" [] "Welcome to Noir!")
我是否将这两个URL都设为:
http://localhost:8080/welcome
http://localhost:8080/welcome/
谢谢!
编辑: 这是完整的答案。
在server.clj
中,加上(:use [ring.util.response :only [redirect]])
然后写:
(defn wrap-slash
""
[handler]
(fn [{:keys [uri] :as req}]
(if (and (.endsWith uri "/") (not= uri "/"))
(handler (assoc req :uri (.substring uri
0 (dec (count uri)))))
(handler req))))
(server/add-middleware wrap-slash)