add TODO to support archive.org-style urls

This commit is contained in:
Nick Sweeting 2024-02-08 05:54:34 -08:00
parent b56bfe57f1
commit 97b185987d
2 changed files with 8 additions and 1 deletions

View file

@ -20,6 +20,7 @@ urlpatterns = [
path('archive/', RedirectView.as_view(url='/')),
path('archive/<path:path>', SnapshotView.as_view(), name='Snapshot'),
path('web/<path:path>', SnapshotView.as_view()), # support archive.org-style URLs
path('plugins/replaywebpage/', include('plugins.replaywebpage.urls')),
# ... dynamic load these someday if there are more of them