up vote 0 down vote favorite
share [g+] share [fb]

I have this rewrite rule

RewriteRule (.*)/([^/\.]+).css$ include/style/styleRedir.php?css=$2.css [L,NC]

which matches thing like:

somefolder/foo.css

and rewirites them to:

include/style/styleRedir.php?css=foo.css

however it won't match:

foo.css

So I tried changing it to:

RewriteRule (.*)(/?)([^/\.]+).css$ include/style/styleRedir.php?css=$3.css [L,NC]

but then it would rewrite to:

include/style/styleRedir.php?css=.css

So how could I make this RewriteRule so it can rewrite foo.css to include/style/styleRedir.php?css=foo.css

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

I don't have Apache installed to test, but have you tried adding the /? to the first grouping?

RewriteRule (.*/?)([^/\.]+).css$ include/style/styleRedir.php?css=$2.css [L,NC]

Alternately, why not 2 rules?

RewriteRule (.*)/([^/\.]+).css$ include/style/styleRedir.php?css=$2.css [L,NC]
RewriteRule /?([^/\.]+).css$ include/style/styleRedir.php?css=$1.css [L,NC]
link|improve this answer
Thank you, solution 2 (2 rules) fixed it. – Pim Jager Dec 8 '08 at 20:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.