Ad
  • Default User Avatar

    if you create a file structure like this on your pc:

    /
    └── important
       └── confidential
          └── docs
             └── index.html
    

    then the path to confidential is /important/confidential

    there's no /confidential, that would look like this:

    /
    ├── confidential
    └── important
       └── confidential
          └── docs
             └── index.html
    

    but now you have two different confidential, and you would be referring to the wrong one, unless of course /confidential links to /important/confidential which it very well could, but you know nothing about that and shouldn't assume it does.

    /
    ├── confidential -> important/confidential
    └── important
       └── confidential
          └── docs
             └── index.html
    

    it's the same with index.html and docs, they too are not directly under /

  • Default User Avatar

    first of all, please use the tag question when you are asking something.

    use markdown to mark code as code so that it does not get interpreted as formatting:

    ```html
    <a href="/">HOME</a> > <a href="/very-long-url-to-make-a-silly-yet-meaningful-example/">VLUMSYME</a> > <span class="active">EXAMPLE</span>
    ```

    as for the question:

    that is the location of confidential. it's not directly under /

    https://www.codewars.com/kata/563fbac924106b8bf7000046/discuss/python
    https://www.codewars.com/kata/563fbac924106b8bf7000046/discuss/
    https://www.codewars.com/kata/563fbac924106b8bf7000046/
    https://www.codewars.com/kata/
    https://www.codewars.com/
    

    discuss here doesn't sit under /:

    https://www.codewars.com/discuss/
    

    because then which kata are you discussing?