In routes.rb you have
#get 'new', to:'articles#new'
but should have
get 'new', to:'articles#new'
Then you will have /new url
/new
Or if you want to use resources :articles
resources :articles
then your url in browser should be /articles/new (not /new)
/articles/new