Спасибо! Работает. > > Помогите, пожалуйста, переделать rewrite-правила от .htaccess под nginx > > RewriteEngine On > > RewriteCond %{REQUEST_FILENAME} !-f > > RewriteRule ^view_(.*).htm$ view.php?pg=$1 > > location ~ ^/view_(?.*)\.htm$ { > root /path/to/files; > try_files $uri /view.php?pg=$name; > } > > location ~ \.php$ { > ... > } > > >