将域重定向到目录,同时保留地址

Redirect domain to a directory while retaining address

我有两个指向同一位置的域(example.comexample2.com)。我想将其中一个域 (example2.com) 重定向到一个目录 (example.com/dir), 而不会 发生以下任何情况:

这样:

提前致谢

因此假设两个域都指向同一个文档根目录,那么您应该可以使用此规则将 example2.com 重写为 /dir

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?example2\.com [NC]
RewriteRule ^(.*)$ /dir/ [L]

如果不是这种情况并且它们不在同一台服务器上,您将不得不使用 mod-proxy [P] 来完成此任务。这将继续 example2.com .htaccess.

RewriteEngine On
RewriteRule ^(.*)$ http://example.com/dir/ [P]