這篇文章將為大家詳細講解有關(guān)怎樣用django實現(xiàn)redirect,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
10年積累的網(wǎng)站制作、成都網(wǎng)站設(shè)計經(jīng)驗,可以快速應對客戶對網(wǎng)站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡服務。我雖然不認識你,你也不認識我。但先建設(shè)網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有徐州免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。用django開發(fā)web應用, 經(jīng)常會遇到從一個舊的url轉(zhuǎn)向一個新的url。這種隱射也許有規(guī)則,也許沒有。但都是為了實現(xiàn)業(yè)務的需要??傮w說來,有如下幾種方法實現(xiàn) django的 redirect。
1. 在url 中配置 redirect_to 或者 RedirectView(django 1.3 版本以上)
2. 在view 中 通過 HttpResponseRedirect 實現(xiàn) redirect
3. 利用 django 的 redirects app實現(xiàn)
1 在url 中配置 redirect_to 或者 RedirectView(django 1.3 版本以上)
from django.views.generic.simple import redirect_to urlpatterns = patterns('', (r'^one/$', redirect_to, {'url': '/another/'}), ) from django.views.generic import RedirectView urlpatterns = patterns('', (r'^one/$', RedirectView.as_view(url='/another/')), )
2. 在view 中 通過 HttpResponseRedirect 實現(xiàn) redirect
from django.http import HttpResponseRedirect def myview(request): ... return HttpResponseRedirect("/path/")
3. 利用 django 的 redirects app實現(xiàn)
1. 在settings.py 中 增加 'django.contrib.redirects' 到你的 INSTALLED_APPS 設(shè)置.
2. 增加 'django.contrib.redirects.middleware.RedirectFallbackMiddleware' 到你的MIDDLEWARE_CLASSES 設(shè)置中.
3. 運行 manage.py syncdb. 創(chuàng)建 django_redirect 這個表,包含了 site_id, old_path and new_path 字段.
主要工作是 RedirectFallbackMiddleware 完成的,如果 django 發(fā)現(xiàn)了404 錯誤,這時候,就會進django_redirect 去查找,有沒有匹配的URL 。如果有匹配且新的RUL不為空則自動轉(zhuǎn)向新的URL,如果新的URL為空,則返回410. 如果沒有匹配,仍然按原來的錯誤返回。
注意,這種僅僅處理 404 相關(guān)錯誤,而不是 500 錯誤的。
增加刪除 django_redirect 表呢?
from django.db import models from django.contrib.sites.models import Site from django.utils.translation import ugettext_lazy as _ from django.utils.encoding import python_2_unicode_compatible @python_2_unicode_compatible class Redirect(models.Model): site = models.ForeignKey(Site) old_path = models.CharField(_('redirect from'), max_length=200, db_index=True, help_text=_("This should be an absolute path, excluding the domain name. Example: '/events/search/'.")) new_path = models.CharField(_('redirect to'), max_length=200, blank=True, help_text=_("This can be either an absolute path (as above) or a full URL starting with 'http://'.")) class Meta: verbose_name = _('redirect') verbose_name_plural = _('redirects') db_table = 'django_redirect' unique_together=(('site', 'old_path'),) ordering = ('old_path',) def __str__(self): return "%s ---> %s" % (self.old_path, self.new_path)
采用類似如上的MODEL ,另外用DJANGO相關(guān)ORM 就可以實現(xiàn)save,delete了。
關(guān)于“怎樣用django實現(xiàn)redirect”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。