You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I assume by the path to files you mean using the name of the file as it is for the url path. This is the case however this difference is in slugifying the file names that we have to do. Otherwise, we will have a problem with a situation in which the file name contains spaces or special characters e.g; Choose content by @their tags #2.md.
That's why we normalize all the incoming filenames and folder names.
I have a file with the following path:
docs/main/choose_content_topic
In another file, I added a link to this file:
/docs/main/choose_content_topic
.However, this returns a 404. I can see that I need to use
/docs/main/choose-content-topic
to access the file (hyphens instead of underscores).Expected: path to files are not changed by the framework
The text was updated successfully, but these errors were encountered: