i have a local ring dev server that's serving up html. i want to support clean urls like: /foo
instead of /foo.html
. what part of ring do i need to hack on to do this? thanks
Middleware. You could add middleware that looked at the incoming :uri
and if it didn't end in .html
, just add the extension.
thanks, will try that