使用 Route53 DNS 重定向域

使用 Route53 DNS 重定向域

我正在考虑将用户重定向到http://webmail.domain.com/3rdparty/roundcube直接代替http://webmail.domain.com/

有什么办法可以做到这一点吗?似乎我只能编辑路由 53 上的“子域”,不确定是否有办法将“/3rdparty/roundcube”放在“http://webmail.domain.com

或者还有其他替代方案吗?考虑使用 TinyURL :\

答案1

一种方法是使用 Apache2 虚拟主机的重定向规则

<VirtualHost *:80>
    ServerName webmail.domain.com
    Redirect 301 /  http://webmail.domain.com/3rdparty/roundcube

    ....
</VirtualHost>

答案2

如果您使用的是 apache,则可以通过 .htaccess 进行操作。这实际上不是 DNS 的工作。

RewriteCond %{HTTP_HOST} ^webmail.domain.com$ [NC]
RewriteRule ^$ /3rdparty/roundcube [R=301,L]

相关内容