diff --git a/nodeJS/introduction_to_nodeJS/project_basic_informational_site.md b/nodeJS/introduction_to_nodeJS/project_basic_informational_site.md index 4f4cf4bf42b..705180cb6ec 100644 --- a/nodeJS/introduction_to_nodeJS/project_basic_informational_site.md +++ b/nodeJS/introduction_to_nodeJS/project_basic_informational_site.md @@ -16,8 +16,8 @@ If you get stuck at anytime, feel free to go back to the [Getting Started lesson 2. Create your node.js server file `index.js` and add the code needed to serve the right page according to the url. - [localhost:8080](http://localhost:8080) should take users to index.html - - [localhost:8080/about](http://localhost:8080/about) should take users to about.html - - [localhost:8080/contact-me](http://localhost:8080/contact-me) should take users to contact-me.html + - [localhost:8080/about.html](http://localhost:8080/about.html) should take users to about.html + - [localhost:8080/contact-me.html](http://localhost:8080/contact-me.html) should take users to contact-me.html - 404.html should display any time the user tries to go to a page not listed above.