4
2

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 5 years have passed since last update.

Ruby on Rails 表示 URL を 変更する

Last updated at Posted at 2021-02-10

目的

  • ビューファイルに紐づいているURLを変更する方法のメモを記載する。
    ※本記事はRuby on Rails超初心者の筆者がまとめたものです。情報が正確ではない可能性があります。優しくコメントをくださると幸いです。

まとめポイント

  • 表示するビューはそのままにURLを変更するにはルーティングファイルの内容を変更してあげるだけで簡単に変更できる。

  • 具体的に説明する。

    1. 今まではlocalhost:30000/topで表示していたビューファイルをlocalhost:3000で表示するようにしたい。
    2. 修正前のルーティングファイルを記載する。
    get "top" => "home#top"
    
    1. 修正後のルーティングファイルを記載する。
    # localhost:30000で表示したい場合はスラッシュのみをURLとして指定する。
    get "/" => "home#top"
    

※内容は少ないですが、まとめたかったので短い記事ですいません。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?