Re: rewrite на nginx

Sergey Shepelev temotor на gmail.com
Ср Дек 29 16:09:41 MSK 2010


2010/12/29 Савельев Александр <sales at edemnv.ru>:
> location / {
>
> root /home/http/domen.ru/www/;
>
> index index.php index.html;
>
> if (!-e $request_filename) {
>
> rewrite ^(/.*)$ /index.php?q=$1 last;
>
> break;
>
> }
>
> }
>
>
>
>
>
> Но в ответ 404 ошибка.
>
> Страница доступна по адресу blabla.domen.ru а данные должны подгружатся с с
> domen.ru/index.php?q=blabla может я что то не так делаю?
>

Да. Вы используете две неправильные директивы: if и rewrite.

location / {
  root /home/http/domen.ru/www/;
  index index.html;
  try_files $uri @php;
}

location @php {
  proxy_pass http://127.0.0.1:8000/index.php?q=$uri;
}

Соответственно, вместо 127.0.0.1:8000 нужно подставить адрес, на
котором слушает apache.


Подробная информация о списке рассылки nginx-ru