Skip to content
Advertisement

Not Found when serving express static file

I would like to access to a page of my web application. I created the server with expressJs and I serve the route by using app.use(express.static()).

Here is my tree :

JavaScript

In the app.js file, I have this :

JavaScript

The line app.use('/MPS', express.static(__dirname + '/client')); work fine : when I go to http://localhost:8080/MPS the page index.html is displayed.

But when I go to http://localhost:8080/Consultation or http://localhost:8080/Parametrage, none of consultation.html or parametrage.html is displayed.

I have this error : Cannot GET /Consultation/

I don’t know how to fix it so any help would be greatly appreciated.

Advertisement

Answer

If you don’t specify a specific html-page in your url the default is index.html. Since there are no index files in Consultation/Parametrage subfolders you see above error.

If you request it with

http://localhost:8080/Consultation/consultation.html

it should work fine. Alternatively you can rename consultation.html to index.html as well and request it with http://localhost:8080/Consultation.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement