Hello
I'm facing the a bit strange problem that when I open mysite with www.mysite.com/index.php everything works fine.
When I do the same with just www.mysite.com I get a 404 not found.
It used to work when I was using index.html. What is causing this? I'm a bit lost as I find no hints in the logfiles.
Relevant config-sections:
server {
...
index index.php;
...
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
# # With php5-fpm:
root /var/www/retohaeberlicom/public_html/;
fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_index index.php;
include fastcgi_params;
}
}
Any ideas what could cause this behaviour or where I should look for config mistakes?
Thanks a lot.