讓我的應用程序在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
完美。只需要第一個區塊。本地測試和'/ 2012/blog-post-title'乾淨地重定向到'/ 2012/blog-post-title /' – elithrar 2012-08-13 11:39:01