This is the second day I try to install my rails web application unter apache 2, but nothig to do. I think the solution is banal, but i don''t find it :-( I would like access to my application with this sample adress: http://localhost:82/fatturazione/public/ My configuration on httpd.conf is this: ------------------------------------------------------------------ <Directory /> Options FollowSymLinks AllowOverride None </Directory> # This should be changed to whatever you set DocumentRoot to. <Directory "C:/Programmi/Apache Group/Apache2/htdocs"> Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> # And this is for the my railsapp <Directory "C:/Programmi/Apache Group/Apache2/htdocs/fatturazione/public/"> Options ExecCGI FollowSymLinks AllowOverride All Allow from all Order allow,deny </Directory> ------------------------------------------------------------------ After this configuration I have restarted apache but when i try the access with the url http://localhost:82/fatturazione/public/ i don''t access to the home of my application (a rhtml file), but I only see a list of file in the web page. Can you help me. Thanks so much --Reis -- Posted via http://www.ruby-forum.com/.