mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 23:36:11 +08:00
FIX: permalink redirect support for url's with extensions in them, like .html and .php
This commit is contained in:
@ -2,8 +2,7 @@ class PermalinksController < ApplicationController
|
||||
skip_before_filter :check_xhr, :preload_json
|
||||
|
||||
def show
|
||||
url = params[:url]
|
||||
url = "#{url}?#{request.query_string}" if request.query_string.present?
|
||||
url = request.fullpath[1..-1]
|
||||
permalink = Permalink.find_by_url(url)
|
||||
if permalink && permalink.target_url
|
||||
redirect_to permalink.target_url, status: :moved_permanently
|
||||
|
Reference in New Issue
Block a user