Главная страница грузится, а другие страницы предлагает сохранить и в итоге
сохраняется файл index.php... Я в шоке, как это исправить? Подскажите
плыс...

Вот мои настройки nginx:

server {
    server_name funtik.net.ua;
    access_log /var/log/nginx-funtik.net.ua.access.log;
    error_log /var/log/nginx-funtik.net.ua.error.log;
    root /usr/home/funtik/webs/funtik.net.ua/public_html;
    index index.php index.html index.htm;

    if (!-e $request_filename) {
        rewrite ^/(.*)$ /index.php?q=$1 last;
    }

    error_page 404 /index.php;

    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }
}

Posted at Nginx Forum: 
http://forum.nginx.org/read.php?21,243651,243651#msg-243651

_______________________________________________
nginx-ru mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx-ru

Ответить