准备:Django的环境(Python)、Apache、Wsgi(必须文件)
首先需要电脑有Python基础下并且安装好Django的环境,下载Apache文件和Wsgi文件。
Apache HTTP Server for Windows V2.4.33 vc14 (32/64) 官方正式本地版下载地址
<VirtualHost *:80>
ServerName local.order.my.com
WSGIScriptAlias / E:/***/order/wsgi/order.wsgi
<Directory "E:/***/order/wsgi">
Order Deny,Allow
Allow from all
</Directory>
Alias /static/ E:/***/oneic-order/static/
Alias /css/ E:/***/oneic-order/css/
Alias /img/ E:/***/oneic-order/img/
Alias /js/ E:/***/oneic-order/js/
</VirtualHost>
//***号是你的项目文件夹