Ticket #7191: url_dispatch.patch
File url_dispatch.patch, 662 bytes (added by , 17 years ago) |
---|
-
url_dispatch.txt
157 157 does not include GET or POST parameters, or the domain name. 158 158 159 159 For example, in a request to ``http://www.example.com/myapp/``, the URLconf 160 will look for `` /myapp/``.160 will look for ``myapp/``. 161 161 162 162 In a request to ``http://www.example.com/myapp/?page=3``, the URLconf will look 163 for `` /myapp/``.163 for ``myapp/``. 164 164 165 165 The URLconf doesn't look at the request method. In other words, all request 166 166 methods -- ``POST``, ``GET``, ``HEAD``, etc. -- will be routed to the same