Viewing 1 replies (of 1 total)
  • Plugin Author John Godley

    (@johnny5)

    You can use https://regex101.com/ to test your regular expressions.

    (.*) means match zero or more characters, which means it will also match /webzine/.

    If you change it to:

    /webzine/(.+)

    Then it will only match if there is one or more characters after the trailing slash.

Viewing 1 replies (of 1 total)
  • The topic ‘Redirecting posts with a prefix but not an url containing only the prefix’ is closed to new replies.