Hello,
I’m wondering about the structuring of URLs in Backendless.
How is the structure specified?
For example, if I expect to have articles of content that are numbered, it might look something like this:
www.example.com/en/a/1234/something-descriptive/
And the “something-descriptive” part is mostly for SEO. But I would like it to be optional, so that even if this part of the URL is removed, the URL still works. (Similar to Stack Overflow’s URLs.)
What do I need to know in order to implement this in Backendless?
Thanks.
With the UI Builder, you create a Single Page App (SPA), which means it won’t behave like a traditional static HTML website that can be directly indexed by search engines like Google.
The app always uses index.html as the entry point, and the specific page is rendered based on the page query parameter. For example, .../index.html?page=landing will load the landing page.
However, you can pass additional query parameters, for example, clientId=123 and use this information on the page to retrieve/display data for a particular client.