Cannot Load A Stylesheet In Web Dev Module

Ah, well that's interesting (that's useful to know about the network tab!):
image

It's looking for it in the parent folder of the project. Should it do that? the index.html is in the project folder

Adding the project name to it works:

  <link rel="stylesheet" href="./<PROJ_NAME>/stylesheet.css>

Edit:
oh, I get it... I'm accessing the index through the .. root? address instead of explicitly addressing the index.html page (I don't know the terminology)
Essentially instead of HTTP://server:8088/system/webdev/PROJ/index.html I'm accessing it via
HTTP://server:8088/system/webdev/PROJ/
hence why it redirects back to the webdev folder :confused: how can I make it work for both links?

Edit 2:
(can you tell I'm new to HTML???)
It does work if you add a / to the end of the URL
e.g.
HTTP://server:8088/system/webdev/PROJ/
but it doesn't work without the ending /
HTTP://server:8088/system/webdev/PROJ