diff --git a/app/org/thp/cortex/controllers/Default.scala b/app/org/thp/cortex/controllers/Default.scala index 9dee36cc9..99090f9f4 100644 --- a/app/org/thp/cortex/controllers/Default.scala +++ b/app/org/thp/cortex/controllers/Default.scala @@ -8,6 +8,6 @@ import javax.inject.{ Inject, Singleton } @Singleton class Default @Inject() (configuration: Configuration, components: ControllerComponents) extends AbstractController(components) { def home: Action[AnyContent] = Action { - Redirect(configuration.get[String]("play.http.context") + "/index.html") + Redirect(configuration.get[String]("play.http.context").stripSuffix("/") + "/index.html") } } \ No newline at end of file