所以我对Django很新,但已多次完成(https://docs.djangoproject.com/en/1.4/intro/tutorial01/)上的教程并觉得我的成绩非常好处理它。
我想要解决的下一个项目是创建,安装和配置中间件(更具体地说,我正在努力使其成为当本地主机访问网站时它拉得很好而当本地主机以外的其他人拉动时它转发到google.com或其他随机网站。)我主要是为了我的老板的要求建立经验,所以任何帮助将不胜感激! :)
我已经阅读了以下网站,但似乎无法弄清楚如何让网址重定向工作。
$ HTTPS:?//docs.djangoproject.com/en/dev/topics/http/middleware/从= olddocs
$ HTTPS://docs.djangoproject.com/en/dev/ref/middleware/
$ HTTP://djangosnippets.org/snippets/510/
我从上述网站(www.djangosnippets.org)获取的代码
import re
from django.http import HttpResponsePermanentRedirect
from django.conf import settings
class UrlRedirectMiddleware:
"""
This middleware lets you match a specific url and redirect the request to a
new url.
You keep a tuple of url regex pattern/url redirect tuples on your site
settings, example:
URL_REDIRECTS = (
(r'www\.example\.com/hello/$', 'http://hello.example.com/'),
(r'www\.example2\.com/$', 'http://www.example.com/example2/'),
)
"""
def process_request(self, request):
host = request.META['HTTP_HOST'] + request.META['PATH_INFO']
for url_pattern, redirect_url in settings.URL_REDIRECTS:
regex = re.compile(url_pattern)
if regex.match(host):
return HttpResponsePermanentRedirect(redirect_url)
答案 0 :(得分:0)
添加到您的设置(假设您正在使用开发服务器):
e.g
URL_REDIRECTS = (
(r'127.0.0.1:8000/hello', 'http://www.google.com'),
)
同时在您的设置中将UrlRedirectMiddleware
python路径添加到MIDDLEWARE_CLASSES
。
例如,如果您的UrlRedirectMiddleware
在名为my_middle.py
app
的模块中定义
将'app.my_middle.UrlRedirectMiddleware'
添加到您的MIDDLEWARE_CLASSES