在APache中设置虚拟主机

时间:2014-02-19 22:38:25

标签: apache

我试图在我的apache服务器中设置虚拟主机并且它没有按预期工作。

首先,如果我尝试使用localhost,一切正常。但是当我尝试www.test.com时,它确实会把我带到实际网站。我如何注册我的更改?

WSGIPythonPath /var/www/html/apache-virtual-env/lib/python2.7/site-packages
<VirtualHost *:80>
        ServerName test.com
        ServerAlias www.test.com
        WSGIScriptAlias / /var/www/html/Deployment/wsgi.py
        <Directory /var/www/html/>
        #Options Indexes FollowSymLinks Includes ExecCGI
        #AllowOverride All
        Order deny,allow
        Allow from all
        </Directory>
</VirtualHost>

1 个答案:

答案 0 :(得分:1)

尝试更改您的主机文件并将www.test.com添加为本地文件,使用root权限编辑该文件

$ sudo nano /etc/hosts

127.0.0.1    www.test.com
127.0.0.1    test.com

我希望它是有帮助的