【发布时间】:2021-04-16 11:37:29
【问题描述】:
我想将旧域(https 和 www)重定向到主域。我需要将其重定向到主页和博客。但是,我想重定向到主页面的子域的旧站点上有 4 个页面。
它应该是什么样子:
Oldwebsite1.com -> mainwebsite2.com
Oldwebsite1.com/blog -> Mainwebsite2.com/blog
Oldwebsite1.com/category1 -> new.mainwebsite2.com/category1
Oldwebsite1.com/category2 -> new.mainwebsite2.com/category2 /// 等等...
像这样的典型代码会起作用还是我需要对其进行调整?
#Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*)$ http://www.mainwebsite2.com/$1 [R=301,L]
【问题讨论】:
标签: .htaccess redirect mod-rewrite subdomain http-status-code-301