Hello all,
Anyone who has experience with this problem or routes, please respond,
What might be setup wrong in the following?
I enabled the routes.rb line :
map.connect ‘’, :controller => “user”, :action => “login”
and my apache server returns :
Routing Error Recognition failed for “/”
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.
–