Heroku:重定向 / 到 /features

发布于 2024-10-05 03:41:14 字数 68 浏览 1 评论 0原文

如何将每个访问 mysite.com/ 的用户自动重定向到 mysite.com/features?

谢谢

How can I have make auto redirecting every user who goes to mysite.com/ to mysite.com/features?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日裸衫吸 2024-10-12 03:41:14

设置你的根路由来直接到达那里(这些是 Rails 3 路由):

in config/routes.rb

root "content#features"

in app/controllers/contents_controller.rb

class ContentsController < ApplicationController
  def features
  end
end

这不会做但是,重定向。为此,您需要这样的东西:
在 config/routes.rb 中

match "features" => "contents#features", :as => "features"
root "content#index"

在 app/controllers/contents_controller.rb 中

class ContentsController < ApplicationController
  def index
    redirect_to features_url
  end
  def features

  end
end

Set your root route to direct folks there (these are Rails 3 routes):

in config/routes.rb

root "content#features"

in app/controllers/contents_controller.rb

class ContentsController < ApplicationController
  def features
  end
end

That won't do a redirect, however. To do that, you'll need something like this:
in config/routes.rb

match "features" => "contents#features", :as => "features"
root "content#index"

in app/controllers/contents_controller.rb

class ContentsController < ApplicationController
  def index
    redirect_to features_url
  end
  def features

  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文