3
例如,在我的索引(請求):在我的web應用程序中爲302架構實現可以嗎?
def index(request):
if logged_in:
return HttpResponseRedirect("/home_profile")
else:
return HttpResponseRedirect("/login")
這樣,當用戶點擊我的主頁......他適當重定向。這是一個很好的建築嗎?或者這會導致緩存問題,等等?
這給出了一個簡短的討論返回代碼http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html – Joe 2010-02-27 11:08:56
看到這個:http://stackoverflow.com/questions/2006397/when-a-url - 結果-IN-A-臨時重定向的HTTP-302是什麼,得到索引。看到這個:http://stackoverflow.com/questions/1393280/http-redirect-301-vs-302-temporary-vs-永久 – 2010-02-27 11:37:05