在 Heroku 上安装我的应用程序。使用rack-canonical-host处理从 myapp.heroku.com 到规范域的重定向。我的域注册商处理来自根域的重定向。
我正在使用 Octopress(一个基于 Jekyll 的框架;Sinatra 在下面运行)并且我想将所有 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