CINXE.COM
Cabells
<!doctype html> <html> <head> <title> Cabells </title> </head> <body> <div id="main" /> <script> const main_dom = document.getElementById("main"); const path = window.location.pathname; if (path.startsWith("/user-profile")) { window.location.replace("https://admin.cabells.com"); } else { window.location.replace("https://cabells.com"); } </script> </body> </html>