diff --git a/boards/views/thread/thread.py b/boards/views/thread/thread.py --- a/boards/views/thread/thread.py +++ b/boards/views/thread/thread.py @@ -52,8 +52,8 @@ class ThreadView(BaseBoardView, PostMixi # If this is not OP, don't show it as it is if not opening_post.is_opening(): - return redirect(opening_post.get_thread().get_opening_post() - .get_absolute_url()) + return redirect('{}#{}'.format(opening_post.get_thread().get_opening_post() + .get_absolute_url(), opening_post.id)) if not form: form = PostForm(error_class=PlainErrorList)