WordPress rewrite rules don’t need ^?
I just did a test and it seems like the rewrite rules imply ^ if you do not specify it. In my test I found: rule ‘foo’ matched url ‘foo’ rule ‘^foo’ matched url ‘foo’ rule ‘foo’ did not match url ‘afoo’ rule ‘^foo’ did not much url ‘afoo’ rule ‘.*foo’ matched url ‘afoo’ So … Read more