开发者

alias url with sinatra / padrino

I've this and it works

  get :about, :map => '/about_us'开发者_开发知识库 do
    render :erb, "<%= 'foo' %>"
  end
  get '/:slug' do
    redirect "/about_us" # <--
  end

Is possible to do in some way "render" instead of "redirect"? or something like render 'posts/1'


get :about, :map => '/about_us' do
  render :erb, "<%= 'foo' %>"
end

get '/:slug' do
  call env.merge('PATH_INFO' => '/about_us')
end
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜