Re[2]: Проблема с rewrite

Dmitry nukleon at mail.ru
Thu Nov 1 16:21:32 MSK 2007


Здравствуйте, Igor.

Вы писали 1 ноября 2007 г., 10:55:08:

> On Wed, Oct 31, 2007 at 11:42:37PM +0300, Dmitry wrote:

>> Решили перевести один проект с nginx + apache на nginx + factcgi php.
>> 
>> Но существует проблема c rewrite:
>> 
>> у апача была такая конфигурация:
>> 
>> RewriteEngine On
>> RewriteBase /
>> RewriteRule !\.(gif|jpg|png|css|zip|js|ico|txt|gz|sql|doc|xls|rar|pps)$ index.php
>> если переделать под nginx:
>> 
>> rewrite !^.+\.(gif|jpg|png|css|zip|js|ico|txt|gz|sql|doc|xls|rar|pps)$ /index.php break;
>> rewrite  ^/(.*)$ /index.php break;
>> 
>> то графика не показывается..
>> 
>> Что я не так делаю?

>       location  /   {
>           fastcgi_pass   ...
>           fastcgi_param  SCRIPT_FILENAME  /home/www/scripts/php/index.php;
>           ...
>       }

Об этом варианте решения я как то не подумал.
Спасибо, работает.


>       location ~
> \.(gif|jpg|png|css|zip|js|ico|txt|gz|sql|doc|xls|rar|pps)$ {
>           root  ...;
>           ...
>       }



-- 
С уважением,
 Dmitry






More information about the nginx-ru mailing list