Davide Bianchi wrote:
> On 2008-01-19, Trammel <Me.TakeThisOut@Server.com> wrote:
>> www.blah.com/aaa/bbb/ccc.xxx
>>
>> Get rewritten to say:
>> www.blah.com/aaa/bbb/script.php?page=ccc.xxx
>
> *UNTESTED*
>
> RewriteCond %{REQUEST_URI} /aaa/bbb/.*$
> RewriteRule ^/aaa/bbb/(.*)$ /aaa/bbb/script.php?page=$1
>
Ok. It's late and I just finished dealing with a database server that
didn't want to serve.
I don't understand what the RewriteCond above adds to the RewriteRule.
From looking at rewrite logs over the past few years, it appears to me
that the Rule is evaluated and if it matches, any conditions are then
evaluated to determine if the rule should be applied. What does the
condition above add to the process?
Jim
>> Stay informed about: mod_rewrite example?