| 35 | | 1. Django looks at the ``ROOT_URLCONF`` setting in your `settings file`_. |
|---|
| 36 | | This should be a string representing the full Python import path to your |
|---|
| 37 | | URLconf. For example: ``"mydjangoapps.urls"``. |
|---|
| | 35 | 1. Django determines the root URLConf module to use; ordinarily |
|---|
| | 36 | this is the value of the ``ROOT_URLCONF`` setting in your |
|---|
| | 37 | `settings file`_, but if the incoming ``HttpRequest`` object |
|---|
| | 38 | has an attribute called ``urlconf``, its value will be used in |
|---|
| | 39 | place of the ``ROOT_URLCONF`` setting. |
|---|