views:

22

answers:

1

Hello,

Just switched from apache and having some rewrite issues.

Simple task: rewrite "http://www.foo.com/BAR/" to "http://www.foo.com/BAR/index.php"

I've tried the following (and variations) but it doesn't parse.

url.rewrite = (
   "/BAR/" => "/BAR/index.php"
)

I suck in regexps btw.

A: 

Solved it. Forgot a "," to from a previous rewrite line...

Iraklis