Kris wrote:
> RewriteRule ([a-z]+)/([a-z]+)/([a-z]+) index.php?controller=$1&event=
> $2&meta=$3 [QSA,NC]
>
> media/css/style.css"> because that is rewritten into
> index.php?controller=media
([a-z]+) will not match on "style.css" - you have to account for the
period. Try ([a-z.]+) with meta=$3 or ([a-z]+(.[a-z]+)?) with meta=$4.
To be more specific on the file extension, you could use ([a-z]+(.css)?)
with meta=$4.
Google "regexp tester" to find a web-based regular expression tester.
That will allow you to test the expression with your input and you'll
see exactly what gets returned.
Mike
>> Stay informed about: rewriterule only for .php files