Root route not working on Win2003 + Apache 2 + SCGI?

Hello all,

I enabled the routes.rb line :

map.connect ‘’, :controller => “user”, :action => “login”

and my apache server returns :

Routing Error

Recognition failed for “/”

Can someone enlighten me on this ?

My apache config contains :

[…]
Listen 8080

[…]
<VirtualHost *:8080>
AddDefaultCharset utf-8
ServerName localhost
DocumentRoot D:/rails_apps/buildview2/public
ErrorDocument 500 /500.html
ErrorDocument 404 /404.html
# handle all requests throug SCGI
SCGIMount / 127.0.0.1:9999
# matches locations with a dot following at least one more
characters, that is, things like *,html, *.css, *.js, which should
be delivered directly from the filesystem
<LocationMatch …+$>
# don’t handle those with SCGI
SCGIHandler Off

<Directory D:/rails_apps/buildview2/public/>
Options +FollowSymLinks
Order allow,deny
allow from all

Is there a conflict here ?

Thanks.