Apache2 从域名重新路由到内部 IP 地址

Apache2 从域名重新路由到内部 IP 地址

我遇到的问题是,当有人访问我的域名 example.co.uk 时,出于某种原因,apache 似乎将请求重新路由到服务器的内部 IP 地址,即 192.168.0.52

我的Apache2默认站点启用文件如下:

    ServerAdmin [email protected]
    ServerName example.co.uk
    ServerAlias www.example.co.uk
    DocumentRoot /var/www

    <Directory />
            Options FollowSymLinks
            AllowOverride All
    </Directory>
    <Directory /var/www/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
    </Directory>

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

    ErrorLog /var/log/apache2/trusteeguard-error.log

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

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

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

如果有帮助的话,这是一个 Ubuntu 盒子;)

答案1

如何重新路由?您没有提供任何日志或示例 URL 来表明存在问题。

如果您的意思是“显示内容来自”,那么是的,显然 - 内容不会改变,它仍然是您的服务器。

ServerName 和 ServerAlias 处于领先地位,除非这也是第一个 vhost;在这种情况下,所有请求都将落在其上。

答案2

确保您已UseCanonicalName Off在 Apache 配置中。

http://httpd.apache.org/docs/2.0/mod/core.html#usecanonicalname

相关内容