7

我希望将旧 URL 列表重定向到 Django/Heroku 应用程序中的新 URL 列表。

由于我使用的是 Heroku,所以我不能只使用.htaccess文件。

我看到 rails 有 rack-rewrite,但我还没有看到 Django 有类似的东西。

4

4 回答 4

5

Django 有重定向应用程序,它允许在数据库中存储重定向列表: https ://docs.djangoproject.com/en/dev/ref/contrib/redirects/

这里还有一个通用的 RedirectView:

https://docs.djangoproject.com/en/1.3/ref/class-based-views/#redirectview

最底层是HttpResponseRedirect:

https://docs.djangoproject.com/en/dev/ref/request-response/#django.http.HttpResponseRedirect

于 2013-08-27T15:37:43.647 回答
3

您可以使用重定向。请检查以下代码。

from django.shortcuts import redirect
return redirect(
                '/', permanent=True
            )

它对我有用。

在此处输入图像描述

于 2019-09-13T04:33:55.150 回答
1

试试redirect_to

来自文档的 301 重定向示例:

urlpatterns = patterns('django.views.generic.simple',
    ('^foo/(?P<id>\d+)/$', 'redirect_to', {'url': '/bar/%(id)s/'}),
)
于 2013-08-27T15:45:28.327 回答
0

虽然接受的答案中提到的重定向应用程序是一个非常好的解决方案,但它还涉及每个 404 错误的数据库调用。我想避免这种情况,所以最终只是在 URL conf 中手动实现它。

"""redirects.py that gets included by urls.py"""
from django.urls import path, reverse_lazy
from django.views.generic.base import RedirectView


def redirect_view(slug):
    """
    Helper view function specifically for the redirects below since they take
    a kwarg slug as an argument.
    """
    return RedirectView.as_view(
        url=reverse_lazy('app_name:pattern_name', kwargs={'slug': slug}),
        permanent=True)

urlpatterns = [
    path('example-redirect/', redirect_view('new-url')),
]
于 2020-05-17T19:42:04.800 回答