79579789

Date: 2025-04-17 17:33:53
Score: 0.5
Natty:
Report link

You can use a RedirectView:

urlpatterns = [
    path(
        "servertest/<path:path>",
        RedirectView.as_view(url="server-test/%(path)s"),
    ),
]
Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Thore