Hi folks,
my admin urls are sat behind a prefix by doing the following.
1#
(r'^admin/', include(admin.site.urls)),
is placed within urls_core.py
2#
(r'^api/', include('project.urls_core')),
is palced within urls.py
All admin URLs work fine except app indexes.
If I go to any URL such as:
- /api/admin/core/
- /api/admin/registration/
- /api/admin/users/
- /api/admin/filters/
I receive 'INVALID REQUEST' as my response. Status code is 200 (OK) though.
I have never received this error message before.
Does anyone have a clue? Thanks guys!