An alternative could be to create either a redirect or a direct response in an additional route. Like so:
(ns compj-test.core
(:use [compojure.core])
(:require [compojure.route :as route]
[ring.util.response :as resp]))
(defroutes main-routes
(GET "/" [] (resp/redirect "/index.html"))
(GET "/a" [] (resp/resource-response "index.html" {:root "public"}))
(route/resources "/")
(route/not-found "Page not found"))
The "/" route redirects to "/index.html" which is then found due to (route/resources "/"). The "/a" route responds directly by 'inlineing' the file index.html.
More on ring responses: https://github.com/mmcgrana/ring/wiki/Creating-responses
EDIT: removed unnecessary [ring.adapter.jetty] import.