0

我有自己的 apache 服务器,我正在尝试了解它的怪癖......我有 DNS 将 example.com 指向 1.2.3.4,并且我已经在 apache2 服务器上设置了一个虚拟主机。

现在我想在同一个 vhost 中指向 db.example.com 来服务 example.com/db 的内容。我希望我可以使用某种 mod_rewrite og ServerAlias,但到目前为止我已经热了一堵墙。

DNS部分被覆盖了,我只是不知道在apache中做什么。

4

1 回答 1

0

在您的.htaccess文件中,尝试以下内容:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^db\.example\.com 
RewriteRule (.*) http://example.com/db/$1 [L] 
于 2012-10-01T14:08:52.327 回答