Publify是目前我需要的完美的gem,除了我想不出如何将它移动到"/blog“。
我将root "articles#index更改为get "/blog", to: "articles#index",但应用程序中对根路径的所有内部引用都指向错误的位置。
我如何才能正确地实现我想要实现的目标?
发布于 2015-08-09 02:37:25
您可以尝试执行以下操作:
root "articles#index"
get "/blog" => redirect("/")发布于 2015-08-09 03:30:49
方法是在application.rb文件中添加config.relative_url_root = "/blog"。在rails guide中可以看到更多信息。
另一种想法是让应用程序保持原样,并使用webserver/passenger在子目录中运行它。
https://stackoverflow.com/questions/31897072
复制相似问题