Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
POST-запрос
Настраиваю форум punbb. Читать его с такими редиректами можно, но
сообщения не отправляются - на rewrite.php POST-параметры не приходят.
Подскажите, как исправить.
location @punbb {
fastcgi_param SCRIPT_FILENAME $root_path/punbb/rewrite.php;
if ($request_uri ~* ^/punbb(.*)$){
set $new_uri $1;
}
fastcgi_param REQUEST_URI $new_uri;
fastcgi_pass 127.0.0.1:9000;
}
location /punbb {
index index.php;
error_page 404 = @punbb;
}
--
Алексей
|