mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FIX: permalink redirect support for url's with extensions in them, like .html and .php
This commit is contained in:
parent
3aaa7d5b03
commit
917a91eb40
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue