FIX: permalink redirect support for url's with extensions in them, like .html and .php

This commit is contained in:
Neil Lalonde 2014-12-04 16:38:58 -05:00
parent 3aaa7d5b03
commit 917a91eb40

View file

@ -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