We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dd4183 commit 4115e46Copy full SHA for 4115e46
components/routing.rst
@@ -117,6 +117,14 @@ the POST method and a secure connection::
117
118
$route = new Route('/foo', array('_method' => 'post', '_scheme' => 'https' ));
119
120
+.. tip::
121
+
122
+ If you want to match all urls which start with a certain path and end in a
123
+ arbitrary suffix you can use the following route definition::
124
125
+ $route = new Route('/start/{suffix}', array('suffix' => '.*'));
126
127
128
Using Prefixes
129
~~~~~~~~~~~~~~
130
0 commit comments