POST-запрос
Igor Sysoev
is at rambler-co.ru
Thu May 28 18:03:37 MSD 2009
On Wed, May 27, 2009 at 05:05:13PM +0400, Алексей Васильевич Залесов wrote:
> Настраиваю форум 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;
> }
location /punbb {
try_files $uri $uri/ @punbb;
index index.php;
}
--
Игорь Сысоев
http://sysoev.ru
More information about the nginx-ru
mailing list