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 和 domain2.com。两个网站的管理部分都在 /admin 目录下。
我需要 domain1.com 上的公共网站重定向到 domain2.com,但我仍然需要访问 admin1.com 上的 admin 子目录。
这是我可以用 .htaccess 轻松完成的事情吗?
在文档根目录的 htaccess 文件中,在domain1.com适当的地方添加:
domain1.com
RewriteEngine On RewriteCond %{REQUEST_URI} !^/admin RewriteRule ^(.*)$ http://domain2.com/$1 [R=301,L]