ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: htaccess



On Mon, Aug 20, 2007 at 12:05:27PM +0600, Евгений(55) wrote:

> Перешел недавно на nginx и никак не могу переделать условие которое
> раньше было в .htaccess
> 
> быть может кто сможет помочь.
> зарание спасибо!
> 
> RewriteEngine On
> Options +FollowSymlinks
> RewriteBase /
> RewriteCond %{REQUEST_FILENAME} !-f
> RewriteCond %{REQUEST_FILENAME} !-d
> RewriteRule ^users/([0-9]*)$ /fullinfo.php?user_id=$1 [L]
> RewriteRule ^users/(.*)$ /profiler_rewrite.php?user_to_search=$1 [L]
> RewriteRule ^403$ "" [F]
> ExpiresActive on
> ExpiresByType image/jpeg "access plus 24 hours"
> ExpiresByType image/gif "access plus 24 hours"
> ExpiresByType text/css "access plus 24 hours"

  location  /users/ {
      if (!-e $request_filename) {
          rewrite  ^/users/([0-9]*)$  /fullinfo.php?user_id=$1 last;
          rewrite  ^/users/(.*)$  /profiler_rewrite.php?user_to_search=$1 last;
          return  403;
      }
  }


-- 
Игорь Сысоев
http://sysoev.ru



 




Copyright © Lexa Software, 1996-2009.