I'm trying to configure a website plugin and need to set a PCRE url pattern for certain pages on my site.
I exclude certain pages using the following patterns successfully.
^/wp-admin/
^/wp-login.php
^/content/
However I also need to exclude pages which are in the following patterns
www.site.com/post_id/post_name/feed/
e.g. www.site.com/345345/myawesomepost/feed/
Where the only static component of the url is /feed/ Would anyone know how to do this using PCRE expressions..?