Ghost redirects to /index.html/

Hello,

I face a really strange behavior. My Ghost installation redirects from domain.com to domain.com/index.html/ and displays the 404 error page.

Is anybody familiar with this problem?

Best regards,
Marius

I solved it. I’m using Apache as a Proxy for Node.js. I needed to add DirectoryIndex disabled at the top of my .htaccess file, so it looks like this:

DirectoryIndex disabled

RewriteEngine On
RewriteRule ^(.*) http://localhost:2368/$1 [P]