Is there anyway to treat all loaded home pages for a given URL path to be the same? For example the home page can show up as:
1) ending with forward slash, for example: `http://mysite.com/site1/`
2) have no forward slash at the end of the URI stem, for example `http://mysite.com/site1`
3) have an index.html file, for example: `http://mysite.com/site1/index.html`
Instead of site1 showing up with three different URLs, is there a way to combine all of them to show up as `http://mysite.com/site1`? Is there someway to remove last forward slash `/` or last instance of `/index.html` from the URL string?
↧