Что значит "передает на search"? У тебя есть еще RewriteRule? Может стоит расположить данное в самом начале и в его конце указать директиву [L], указывающую на то, что не надо применять последующие rewrite-правила, если это выполнено успешно:
Код:
RewriteRule ^\/papka\/(.+)\.html$ /fail.php?q=$1 [L]
Из мана к апачу:
Цитата:
'last|L' (last rule)
Stop the rewriting process here and don't apply any more rewriting rules. This corresponds to the Perl last command or the break command from the C language. Use this flag to prevent the currently rewritten URL from being rewritten further by following rules. For example, use it to rewrite the root-path URL ('/') to a real one, e.g., '/e/www/'.
|