I have been changing some of my views templates urls lately, and switched from:
(r'^(?P<slug>[^\.]+)/view_post/$', 'view_post'),
to :
(r'^(?P<slug>[^\.]+)/post/$', 'post'),
in my blog application urls.py
. And, though I did a syncdb
and migrated
my blog application with south, the new url doesn't seem to be considered
by my sitemaps or the admin interface which redirects me on the
old url when I'm clicking on view this article.