csshtmlsaasbranding

Custom landing page for SaaS application


I am building a SaaS based web application, to which users can connect using their own domain and apply their company branding to it.

How can I customize the landing page of my application based on domain from which it is being accessed. There is no login information to identify the customer.

Thanks.


Solution

  • On your landing page, you can fetch request url and then customize the response accordingly.

    You didn't mention the programming language, however in Java we can use ((HttpServletRequest)request).getRequestURL().toString() to get it.

    Recently for one of my projects I used a third party service - www.grooveui.com, it does something similar but without you having to write server side code.