Is it possible to create a multi-page web application?

0
Hi! Out of the box Mendix creates single-page web application. Is it possible to have a web application that is multi-page? As in where visiting example.com/foo would result in a different page than example.com/bar.
asked
2 answers
0

That is not how Mendix is setup. However if you want to land on a specific page based an the URL there is the deeplinking module: https://appstore.home.mendix.com/link/app/43/

answered
3

There is built in functionality to support this without using an app store component.

In the page builder you have the option to set a URL per page. Whenever you open the page from the Mendix Navigation, the URL is updated (with /p/{pagename}). When you navigate to that url with from your browsers address bar you are redirected to that page.

answered