diff options
author | Andrey Andreev <narf@devilix.net> | 2013-07-19 19:20:49 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-07-19 19:20:49 +0200 |
commit | fbb980aac1b6da9d644551af96294566b6b1820a (patch) | |
tree | 3c41614304ce92b8b7cd7828e3d2093acfe44eef /user_guide_src | |
parent | 08fec7bdf846daa3dfa4114310f065294ac092fc (diff) |
[ci skip] Remove a leftover description of the non-configurable translating of URI dashes
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/general/urls.rst | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/user_guide_src/source/general/urls.rst b/user_guide_src/source/general/urls.rst index d678e4a0a..ca44e2f4c 100644 --- a/user_guide_src/source/general/urls.rst +++ b/user_guide_src/source/general/urls.rst @@ -32,24 +32,6 @@ The :doc:`URI Library <../libraries/uri>` and the :doc:`URL Helper with your URI data. In addition, your URLs can be remapped using the :doc:`URI Routing <routing>` feature for more flexibility. -Friendly URLs -============= - -As you might guess, since there's a straight relationship between -URI segments and the controller/method pair that's being called, -those two determining segments must represent a valid class and -method name. -You may however also use dashes in the class/method-representing -segments, and they will automatically be translated to underscores -in order to be valid routed segments. - -For example:: - - example.com/my-settings/change-password/ - -The above example will route to the ``My_settings`` controller and -its method ``change_password()``. - Removing the index.php file =========================== |