Apache2上的虚拟主机问题 - 不重定向到适当的虚拟主机

时间:2011-03-27 20:12:11

标签: apache2 virtualhost domain-name

所以我在同一个IP上有两个不同的站点。基本上我只想将流量从一个域引导到某个文件夹,从另一个域引导到另一个域。我阅读了这个页面... http://httpd.apache.org/docs/2.0/vhosts/examples.html,并将我的启用网站的配置文件设置为这样,但我的第二个域只是将流量路由到我的原始网站。

所以... 域1:cdphoto.uni.cc 域2:wtfdoidoatubc.uni.cc

我的配置文件看起来像this

感谢您的任何建议!

3 个答案:

答案 0 :(得分:0)

在这种情况下,最好使用控制面板并添加重定向,除非您打算使用网站的主要部分。但如果不是主机控制面板的重定向规则将是最好和最简单的选择。

答案 1 :(得分:0)

也许尝试使用DocumentRoots / var / www / site1和/ var / www / site2?现在第二个站点位于第一个站点的子文件夹中。如果您请求http://www.cdphoto.uni.cc/wtf会怎样?

答案 2 :(得分:0)

我会尝试一下,确保你注意到我对第一个文档根目录所做的更改。

    <VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www/cdp
    ServerName www.cdphoto.uni.cc
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/cpd>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

    <Location /trac>
        SetHandler mod_python
        PythonInterpreter main_interpreter
        PythonHandler trac.web.modpython_frontend
        PythonOption TracEnvParentDir /var/www/trac
        PythonOption TracUriRoot /trac
    </Location>

</VirtualHost>
    <VirtualHost *:80>
        DocumentRoot /var/www/wtf
        ServerName www.wtfshouldidoatubc.uni.cc
    </VirtualHost>