"You are being redirected." now being displayed when I go to my page. Before it would take me to the page that I specified as the one I wanted to load. I recently upgraded to the latest Rails (1.1.2 I think). Chris -- Posted via http://www.ruby-forum.com/.
On 6/1/06, Why the redirect? <christopherwinslett@gmail.com> wrote:> "You are being redirected." now being displayed when I go to my page.Check config/routes.rb? Specifically the line that says: map.connect '''', :controller => "welcome" should be uncommented and you''ll get your welcome controller by default. -- Cheers, Hasan Diwan <hasan.diwan@gmail.com>
"You are being redirected." is being rendered from my "content/index" which does redirect to "content/list". Before my upgrade to 1.1.2, it didn''t give me a stale screen with "You are being redirected." The text is not sent from routes.rb. That file is correctly sending the visitor to "content/index". When I tried to change routes.rb to read map.connect "", :controller => "content", :action => "list" It gave me a circular error that always showed "You are being redirected." You can see the delima at mudbowl.winslettdesign.com Thanks, Chris -- Posted via http://www.ruby-forum.com/.