Skip to content

Commit 3aa6b05

Browse files
committedJun 8, 2006
Solved the POST-data-lost-after-redirect problem by raising RuntimeError when DEBUG=True in the CommonMiddleware
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3109 bcc190cf-cafb-0310-a4f2-bffc1f526a37
1 parent e5cd46d commit 3aa6b05

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎django/middleware/common.py

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ def process_request(self, request):
3939
# trailing slash or a file extension.
4040
if settings.APPEND_SLASH and (old_url[1][-1] != '/') and ('.' not in old_url[1].split('/')[-1]):
4141
new_url[1] = new_url[1] + '/'
42+
if settings.DEBUG and request.META['REQUEST_METHOD'].lower() == 'post':
43+
raise RuntimeError, "You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST data. Change your form to point to %s%s (note the trailing slash), or set APPEND_SLASH=False in your Django settings." % (new_url[0], new_url[1])
4244
if new_url != old_url:
4345
# Redirect
4446
if new_url[0]:

1 commit comments

Comments
 (1)

graingert commented on Jun 28, 2018

@graingert
Contributor

Can't you just do a 307 or 308 redirect?

Please sign in to comment.