Issues in urls when running Django in subdirectory or say suburl Issues in urls when running Django in subdirectory or say suburl wordpress wordpress

Issues in urls when running Django in subdirectory or say suburl


Firstly, Django and apache run as backend webservers. Therefore, you can solve this by running apache and Django on two separate ports.

Then you can redirect from the current Django site to the new site using HttpResponseRedirect.


That's the old format for urls.py. The current is this:

"""monero URL ConfigurationThe `urlpatterns` list routes URLs to views. For more information please see:    https://docs.djangoproject.com/en/3.0/topics/http/urls/Examples:Function views    1. Add an import:  from my_app import views    2. Add a URL to urlpatterns:  path('', views.home, name='home')Class-based views    1. Add an import:  from other_app.views import Home    2. Add a URL to urlpatterns:  path('', Home.as_view(), name='home')Including another URLconf    1. Import the include() function: from django.urls import include, path    2. Add a URL to urlpatterns:  path('blog/', include('blog.urls'))"""from django.contrib import adminfrom django.urls import pathfrom monero import viewsurlpatterns = [    path('admin/', admin.site.urls),    path('/', views.py),]

This is actually the file that is made when you make a new django project.