2012-08-06 65 views
3

讓我的應用程序在Heroku上運行。使用rack-canonical-host來處理從myapp.heroku.com到規範域的重定向。我的域名註冊商處理來自根域的重定向。重新指引網址以在Sinatra中添加尾部斜線

我使用Octopress(基於哲基爾框架;西納特拉運行下方),然後我想重新定向所有的URL 沒有尾隨斜線尾隨斜線變型。我會在網絡服務器端執行此操作,但我無法使用Heroku進行此操作。

我還假設301重定向是執行重定向的最佳實踐。

我確實看過了Sinatra文檔,但它似乎默認情況下是「?」選項。在你的路線上,但是我的路線沒有這個語法,但仍然處理有和沒有案件。

這是我目前config.ru

require 'bundler/setup' 
require 'sinatra/base' 
require 'rack/contrib' 
require 'rack-canonical-host' 

# The project root directory 
$root = ::File.dirname(__FILE__) 

class SinatraStaticServer < Sinatra::Base 

    get(/.+/) do 
    expires 3600, :public, :must_revalidate 
    send_sinatra_file(request.path) {404} 
    end 

    not_found do 
    expires 0, :public, :no_cache 
    send_sinatra_file('404.html') {"Sorry, I cannot find #{request.path}"} 
    end 

    def send_sinatra_file(path, &missing_file_block) 
    file_path = File.join(File.dirname(__FILE__), 'public', path) 
    file_path = File.join(file_path, 'index.html') unless file_path =~ /\.[a-z]+$/i 
    File.exist?(file_path) ? send_file(file_path) : missing_file_block.call 
    end 

end 

if ENV['CANONICAL_HOST'] 
    use Rack::CanonicalHost, ENV['CANONICAL_HOST'], ignore: ['media.eatsleeprepeat.net', 'static.eatsleeprepeat.net'] 
end 

use Rack::Deflater 

run SinatraStaticServer 

回答

3

這對我的作品添加結尾的斜槓到不使用重定向有一個任何路線:

get %r{(/.*[^\/])$} do 
    redirect "#{params[:captures].first}/" 
end 

get %r{/.*/$} do 
    "successful redirect for '#{request.path}'" 
end 
+0

完美。只需要第一個區塊。本地測試和'/ 2012/blog-post-title'乾淨地重定向到'/ 2012/blog-post-title /' – elithrar 2012-08-13 11:39:01

2

不要對你有一個完整的答案,但我用重定向沿線你的建議如

get '/blog/2012/05/01/delegation/?' do 
    redirect '/blog/2012/05/01/effective-delegation/', 301 
end 

我覺得對於類,octopress假設類別/ index.html的,因此:

file_path = File.join(file_path, 'index.html') unless file_path =~ /\.[a-z]+$/i 

線,這將轉化domain.com/category到domain.com/category/index.html 。我相信爲什麼你的一些URL有或沒有結尾的斜槓繼續工作。

希望這有助於有點...