I followed the guide for RailsOnWindows
(http://wiki.rubyonrails.org/rails/pages/RailsOnWindows) and completed
all the steps without any problems. But when I try to access my page, I
get:
Routing Error
Recognition failed for “/rails”
rails is what I have in my httpd.conf:
<VirtualHost *:80>
ServerName rails
DocumentRoot “D:/devapps/Apache Group/Apache2/htdocs/hello/public”
<Directory “D:/devapps/Apache Group/Apache2/htdocs/hello/public”>
Options ExecCGI FollowSymLinks
AllowOverride all
Allow from all
Order allow,deny
AddHandler cgi-script .cgi
AddHandler fastcgi-script .fcgi
I must be missing something but I don’t see it. I’ve read over all the
steps several times. I’ve searched quite a bit with google but I do not
find any solutions for this problem. Thanks in advance for any help!
-Michael