Custom URL

Permalink
Hello,

I encounter an issue with the settings of the rewriting of personnal URL.

The purpose is to redirecthttp://mydomain/rep1/rep2/rep3/file-666.html... tohttp://mydomain/rep1/rep2/rep3/?value=666...

Only the second work.

I have a 404 Error withhttp://mydomain/rep1/rep2/rep3/file-666.html...

I give you my htaccess :

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php
RewriteRule (.+)/rep3/.*-([0-9]+).html rep3/?value=$1 [L]

I don't understand why it does not work.