Skip to content Skip to sidebar Skip to footer

Run Django Project Inside Wordpress (on Suburl Of Wordpress Using Apache And Mod_wsgi)

I want to run my wordpress site on main url like www.example.com and Django on its suburl like www.example.com/djnago using Apache and mod_wsgi. I am trying to implement this on my

Solution 1:

"wptesting.com/django" is not a server name. "wptesting.com" is the server name, and you want to host the site at "/django" so that is the value you put for WSGIScriptAlias.

ServerName wptesting.com
WSGIScriptAlias /django /path_to/wsgi.py

Post a Comment for "Run Django Project Inside Wordpress (on Suburl Of Wordpress Using Apache And Mod_wsgi)"