What is the proper way to set rewrite rules that can handles requests after first load, For example <HTML> relative path requests for assets or hrefs?<p>Lets say you have homebase.com/kubedash and homebase.com/qdrant, what is the best practice for supporting these two services.<p>- homebase.com/qdrant --> qdrant:port/<p>- homebase.com/qdrant/dashboard --> qdrant:port/dashboard<p>- homebase.com/kubedash --> kubernetes-dashboard:80/<p>The problem i run into is that each of the services load an HTML with relative paths to the 're-written' request. In other words qdrant:port/dashboard HTML will try to fetch `homebase.com/dashboard/assets` but your re-write rule would only handle it if its, `homebase.com/qdrant/dashboard/assets`<p>There are many answers and suggestions but i've worked through most and have realized that either your href or your assets or something else will break it. The solution I have found is to use subdomains.<p>What is the right way to do this? This feels like the basic feature for ingress controller.