URL控制器的动态参数
def article_year(request,year,month): return HttpResponce(year,month)
url(r'article/(d{4})/(d{2})',views.article_year),