How do you remove /index/ from the URL path?
I’ve found a few threads but I can’t seem to find an answer.
My site is a single page that shows groups based on user navigation and I can’t see how to remove /index/ from the URL.
How do you remove /index/ from the URL path?
I’ve found a few threads but I can’t seem to find an answer.
My site is a single page that shows groups based on user navigation and I can’t see how to remove /index/ from the URL.
This allows you to replace /index/ with something else, rather than remove it. Is that right?
We have a concept of index
page in web development. Suppose your domain is www.yourdomain.com
then index page refer to the page which is showing www.yourdomain.com/
this path. See that we don’t show index page inside /index/
route because it is a different page altogether.
Now in bubble, by default we have a index
page, which shows on the main domain ie. www.yourdomain.com/
, if you make some other page index
then old index change to old_index
I guess.