On Fri, 24 Jan 2014 07:31:38 GMT, Ty Overby wrote:

What am I missing?

This :

auto fsettings = new HTTPFileServerSettings;
fsettings.serverPathPrefix = "/static";
 
auto router = new URLRouter;
router.get("/index.html", &index);
router.get("/static/*", serveStaticFiles("public/",fsettings)); // forgot this in my first answer