将子域/子文件夹重定向到根域/子文件夹 - 但仅限于某些实例

问题描述 投票:0回答:1

当我设置子域名时,我错误地创建了一些链接。现在Google认为我的子域和根域都有一些页面。我需要修复此问题,但我无法重定向整个子域。

我想做的例子:

https://sub.example.com/ (no redirect)
https://sub.example.com/keep-1 (no redirect)
https://sub.example.com/keep-2 (no redirect)

https://sub.example.com/move-1/* => https://example.com/move-1/*
https://sub.example.com/move-2/* => https://example.com/move-2/*

我已经尝试了一些.htaccess解决方案而且我很接近,但我无法理解。这是我尝试过的:

尝试#1 - 正确重定向,但不能作为解决方案,因为它重定向来自子域的所有内容

RewriteCond %{HTTP_HOST} ^sub\.example\.com [NC]
RewriteRule ^(.*)$ https://example.com/$1 [L,R=301,NE]

尝试#2 - 不重定向任何东西 - 似乎是正确的解决方案,但我错过了重定向如何工作,我想......

RewriteCond %{HTTP_HOST} ^sub\.example\.com/move-1/ [NC]
RewriteRule ^(.*)$ https://example.com/move-1/$1 [L,R=301,NE]

尝试#3 - 不重定向任何东西

RewriteCond %{HTTP_HOST} ^sub\.example\.com/move-1/(.*)$ [NC]
RewriteRule https://example.com/move-1/$1 [L,R=301,NE]

尝试#4 - 不重定向任何东西

RewriteBase /
RewriteRule ^sub\.example\.com/move-1/(.*)$ https://example.com/move-1/$1 [R=301]

我的.htaccess文件位于根域的root html文件夹中,似乎有控制权。我也从子域的根文件夹中尝试了这些,但是没有重定向任何东西。

.htaccess redirect mod-rewrite subdomain
1个回答
1
投票
RewriteCond %{HTTP_HOST} ^sub\.example\.com$
RewriteRule ^move(.*) https://example.com/move$1 [R=301,L]

%{HTTP_HOST}是主机名,映射到域名,如sub.example.comexample.com。它不包含域后面的任何path部分。 $1是反向引用,映射到正则表达式部分(.*)RewriteRule告诉请求uri模式是否以/move开头,然后永久重定向到https://example.com/move$1

© www.soinside.com 2019 - 2024. All rights reserved.