You can use a RedirectView:
urlpatterns = [ path( "servertest/<path:path>", RedirectView.as_view(url="server-test/%(path)s"), ), ]