Hi Rob,
all seems to be correct. Just a question related regular expressions.
In your item you set the URI as follow:
^/index.php/*$
That means "starts with /index.php, has zero or more / and then ends".
Are you sure this is what you need? Be aware that a star here is different from, as example, shell expansion:
a* Match any sequence of zero or more a characters.
Let me know,
Luigi