Помогите с настройками nginx.conf для Wordpress
littlefuntik
nginx-forum at nginx.us
Sat Oct 12 20:48:16 UTC 2013
Главная страница грузится, а другие страницы предлагает сохранить и в итоге
сохраняется файл 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