Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript React Router Basics Navigating and Nesting Routes Displaying Clean URLs

Why does putting "/" make a difference

I did not understand the last part or the video regarding the root relative URL. Why does putting "/" make a difference ?

1 Answer

andren
andren
28,558 Points

The / specifies that the filename is relative to the root of the website. So /bundle.js actually translates to: localhost:8080/bundle.js. If the / was not included then the filename would be assumed to be relative to whatever path you were currently on. So if you were currently in localhost:8080/about and referenced bundle.js then it would be treated as localhost:8080/about/bundle.js. Since the bundle.js file is not actually placed inside of about that link would be wrong.

Thanks andren :) for taking the time to write out the detailed explanation. Much appreciated !!