mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-05-01 08:25:18 -04: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
|
skip_before_filter :check_xhr, :preload_json
|
||||||
|
|
||||||
def show
|
def show
|
||||||
url = params[:url]
|
url = request.fullpath[1..-1]
|
||||||
url = "#{url}?#{request.query_string}" if request.query_string.present?
|
|
||||||
permalink = Permalink.find_by_url(url)
|
permalink = Permalink.find_by_url(url)
|
||||||
if permalink && permalink.target_url
|
if permalink && permalink.target_url
|
||||||
redirect_to permalink.target_url, status: :moved_permanently
|
redirect_to permalink.target_url, status: :moved_permanently
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue