Index: public/.htaccess =================================================================== --- public/.htaccess (revision 923) +++ public/.htaccess (working copy) @@ -1,6 +1,13 @@ # General Apache options -AddHandler fastcgi-script .fcgi -AddHandler cgi-script .cgi + + AddHandler fastcgi-script .fcgi + + + AddHandler fcgid-script .fcgi + + + AddHandler cgi-script .cgi + Options +FollowSymLinks +ExecCGI # If you don't want Rails to look in certain directories, @@ -29,7 +36,15 @@ RewriteRule ^$ index.html [QSA] RewriteRule ^([^.]+)$ $1.html [QSA] RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule ^(.*)$ dispatch.cgi [QSA,L] + + RewriteRule ^(.*)$ dispatch.fcgi [QSA,L] + + + RewriteRule ^(.*)$ dispatch.fcgi [QSA,L] + + + RewriteRule ^(.*)$ dispatch.cgi [QSA,L] + # In case Rails experiences terminal errors # Instead of displaying this message you can supply a file here which will be rendered instead