0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

namespaceをURLに反映させたくない。

Posted at

namespaceやってると、管理上分けてるだけなのにいらんもんがURLに出てくる。
例えば管理者(admin)とユーザー(public)の画面を分けていたりすると

namespace :public do
 resources :posts, only: [:index]
end
public_posts GET    /public/posts(.:format)        public/posts#index

こうなる。/publicがどう考えても邪魔。
ので、root.rbを書き換える。

scope module: "public" do
 resources :posts, only: [:index]
end
 posts GET    /posts(.:format)      public/posts#index

スッキリ!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?