Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们网站的文件位于domain1.com/directory - 我刚刚购买了一个新域 ( domain2.com ),并希望它看起来好像文件来自新域,但实际上是从domain1.com中提取内容/目录
您能否帮我提供 domain1.com 根目录中 .htaccess 文件的必要代码,以便domain2.com指向domain1.com/directory?
采用:
Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^domain2.com [nc] rewriterule ^(.*)$ http://www.domain2.com/directory/$1 [r=307,nc]
感谢阿德里亚诺的回答。最后,我使用了 CNAME DNS 条目的组合来指向原始域,并使新域成为原始域的 cPanel 中的“附加域”。现在一切正常。