Any way to serve static html files from express without the extension?

you can just use extension option in express.static method .

app.use(express.static(path.join(__dirname, 'public'),{index:false,extensions:['html']}));

Leave a Comment