Removing the extras from the url

I'm using a subdomain "app" and still get the app.domainname.com/app/____ url as an ending. Any way to make it go away and just end in app.domainname.com withought the app/____ ?

thank you!

Hi @Ori,

Retool is still serving your app inside its routing system, and by default, it puts all apps under /app/<app_name>.

I can think of 2 options:

  1. Set a landing page for a Permission Group. Go into Settings >> Permissions >> Your permission group with your app >> Landing page. Select the app you want and that is the app that will open directly when they login to your app.domainname.com.

  1. Create a “homepage” app that shows at /app/home, and manually redirect from / to that app using your DNS/CDN/Cloudflare/etc. Example with Cloudflare (Page Rules):
    Match: app.domainname.com/
    Forward to: app.domainname.com/app/your-app-name
1 Like

Let us know if you have any questions about the above recommendations, @Ori!