-
Notifications
You must be signed in to change notification settings - Fork 119
Open
Labels
bugSomething isn't working.Something isn't working.documentationImprovements or additions to documentation.Improvements or additions to documentation.low priorityLow priority issues to be done eventually.Low priority issues to be done eventually.t-toolingIssues with this label are in the ownership of the tooling team.Issues with this label are in the ownership of the tooling team.
Description
All landing pages have trailing slash, for example /api/client/js/
. I think that it's fixable by replacing this rewrite:
rewrite ^/api/client/js$ /api/client/js/ redirect;
with
rewrite ^/api/client/js/$ /api/client/js redirect;
rewrite ^/api/client/js$ /api/client/js/index.html;
The user gets then redirected from trailing slash to normal, and that gets internally rewritten to index.html
which should work. But I am not 100% sure that there are no downsides :) and it's low prio for now.
CC @B4nan
Metadata
Metadata
Assignees
Labels
bugSomething isn't working.Something isn't working.documentationImprovements or additions to documentation.Improvements or additions to documentation.low priorityLow priority issues to be done eventually.Low priority issues to be done eventually.t-toolingIssues with this label are in the ownership of the tooling team.Issues with this label are in the ownership of the tooling team.