If I change my route to a Literal, or Segment, it works fine, but not when defined as a Method.
Maybe there's a reason for this, but it's incredibly annoying when building forms (which require and action URL, but the URL itself should only accept posts).
I have a route defined as follows:
However the URL Viewhelper is not able to echo that route at all:
If I change my route to a
Literal
, orSegment
, it works fine, but not when defined as aMethod
.Maybe there's a reason for this, but it's incredibly annoying when building forms (which require and
action
URL, but the URL itself should only accept posts).