3

在 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
4

2 回答 2

3

这对我来说适用于向任何没有使用重定向的路由添加尾部斜杠:

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

get %r{/.*/$} do
    "successful redirect for '#{request.path}'"
end
于 2012-08-13T02:12:01.500 回答
2

没有完整的答案,但我按照您建议的方式使用重定向,例如

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

我认为对于类别,octopress 假定为 category/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 继续有效的原因。

希望这有所帮助...

于 2012-08-07T01:44:09.337 回答