0

want to change url

From This - https://localhost/login/canvas

To - https://localhost/login/Something

Please tell me where or how i can change the URL, what file would i have to change?

Thank you!

1 Answers1

0

Change it in your config/routes.rb file If you post the contents of the file, it will be easier to say.

L11
  • 187
  • 2
  • 15
  • Thank you!It's too long to reply , But i'm giving you root portion - get 'accounts/:account_id/theme-preview' => 'brand_configs#show' root to: 'users#user_dashboard', as: 'root', via: :get # backwards compatibility with the old /dashboard url – Anup Kumar Mondal Jan 09 '18 at 05:27
  • change the part **get 'login/canvas'** to **get 'login/something'** – L11 Jan 09 '18 at 05:33
  • 'get 'login/canvas' => 'login/canvas#new', as: :canvas_login post 'login/canvas' => 'login/canvas#create' # deprecated alias post 'login' => 'login/canvas#create'' - want to redirect to the same page, just want to change the url, what should i change here? – Anup Kumar Mondal Jan 09 '18 at 06:03
  • You can set path in route Like get 'login/canvas' => 'login/canvas#new', as: :canvas_login, path: "login/something" – Manisha Odedara Feb 21 '19 at 13:26