如何在WordPress网站上添加新的重定向

时间:2019-10-11 作者:developerme

我已经创建了新网站https://example1.com/ 我有一个老网站https://example.com/. 我们有一个客户支持票证门户,该门户URL为https://support.example.com/. 现在,我已将支持门户URL更改为https://support.example1.com/ 现在,我想在上为以下条件添加重定向.htaccess.

重定向https://support.example.com/https://support.example1.com/https://support.example.com/a/ticket/124 进入https://support.example1.com/a/ticket/124https://support.example.com/ticket/124 进入https://support.example1.com/ticket/124我怎样才能做到这一点?谁都知道这一点的解决方案?

1 个回复
SO网友:MrWhite

只重定向support 子域然后您可以在WordPress前端控制器之前执行以下操作(假设support 子域解析到相同的位置,可能由WP)在根目录中使用mod\\u rewrite进行处理.htaccess 文件:

RewriteCond %{HTTP_HOST} ^support\\.example\\.com [NC]
RewriteRule ^((?:a/)?ticket/\\d+)?$ https://support.example1.com/$0 [R=302,L]
只有当您确定301(永久)重定向正常时,才更改为301(永久)重定向。

请注意,这并不是专门将HTTP重定向到HTTPS。