mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 18:02:46 +08:00
FIX: support Permalink urls with query string
This commit is contained in:
parent
4b46bf5438
commit
d15b609e0a
|
@ -2,7 +2,9 @@ class PermalinksController < ApplicationController
|
|||
skip_before_filter :check_xhr, :preload_json
|
||||
|
||||
def show
|
||||
permalink = Permalink.find_by_url(params[:url])
|
||||
url = params[:url]
|
||||
url = "#{url}?#{request.query_string}" if request.query_string.present?
|
||||
permalink = Permalink.find_by_url(url)
|
||||
if permalink && permalink.target_url
|
||||
redirect_to permalink.target_url, status: :moved_permanently
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue
Block a user