Redirect homepage with / at the end

This commit is contained in:
Tamas Kocsis 2020-09-09 18:29:53 +02:00
parent b9c65d75ef
commit e74fdc4036
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ class UiRequest(object):
yield self.formatRedirect(url)
def actionIndex(self):
return self.actionRedirect("/" + config.homepage)
return self.actionRedirect("/" + config.homepage + "/")
# Render a file from media with iframe site wrapper
def actionWrapper(self, path, extra_headers=None):