'Rewrite with multiple back reference with .html file to domain name

About:

I'm trying to rewrite my domain using Nginx: I have a website on which I'm trying to rewrite the URL to www.my.domain.com to make it secure as it's showing the whole directory structure

Right now when I write in the browser

www.my.domain.com

It redirects me to this path below

www.my.domain.com/dreamfactory/dist/index.html#/login

I want to hide the directory structure from URL to keep it safe, on search www.my.domain.com

Results should be:

www.my.domain.com/

Implemented Rewrites:

 location / {
   try_files $uri $uri/ /index.php?$is_args$args;
 }
location / {
    try_files $uri @rewrite;
  }
  location @rewrite {
    rewrite ^(.*[^/])$ $1/ permanent;
    rewrite ^(.*)/$ $1.html break;
  }

Any Hope 🤞🤞🤞🤞🤞🤞🤞🤞



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source