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.
当我在 url 请求上有特定路径时,我需要更改域。更具体地说,我需要首先确定 url 请求中是否存在某个路径(/路径)。如果存在,则显示域为 www.mynewdomain.com/path/ 的网站。如果 /path 在 url 请求中不存在,则显示 www.myolddomain.com 或任何请求。
您可以使用 RewriteRule 将请求重定向到新域。您可以在虚拟主机中提及配置。
RewriteEngine On RewriteRule /path(.*) http://www.mynewdomain.com/$1 [L,R]
此配置保留/path令牌 [ 表示(.*)] 之后的 URL 部分,并使用$1.
/path
(.*)
$1