Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
からのすべてのリクエストをリダイレクトする必要がありwww.mysite.comますmysite.com
www.mysite.com
mysite.com
rails で解決策を見つけましたが、Django/Python でそれを行うにはどうすればよいですか?
GoDaddy のモデレーターによって投稿された、私が見つけた唯一の解決策は上記でした。GoDaddy の DNS Manager ではこの種の問題を解決できないようです。
これで解決:
from django.http import HttpResponsePermanentRedirect class WWWRedirectMiddleware(object): def process_request(self, request): if request.META['HTTP_HOST'].startswith('www.'): return HttpResponsePermanentRedirect('http://example.com')