Я пытаюсь отправить REQ без добавления имени файла, тогда он работал неправильно. < /p> [code]RewriteEngine On # Block if md5 or expires are missing RewriteCond %{QUERY_STRING} !(^|&)md5= [NC] RewriteCond %{QUERY_STRING} !(^|&)expires= [NC] RewriteRule ^files/ - [F] # Block if expired RewriteCond %{QUERY_STRING} (^|&)expires=([0-9]+) [NC] RewriteCond %{TIME} >%2 RewriteRule ^files/ - [F] # Send to verify.php RewriteRule ^files/(.*)$ verify.php?file=$1 [QSA,L] < /code> Вот мой код verify.php. < /p>