我将域名从domaina.com更改为domainb.com,并使用通配符重定向来匹配其他域上的所有网址。我想特别说明domaina.com的主页重定向到domainb.com/page。
这是否可能不会破坏此代码的功能(在domaina.com的.htacces中)以匹配URL
#Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*)$ http://domainb.com/$1 [R=301,L]
谢谢。
此致 纳金。
答案 0 :(得分:1)
你只需要另一个RewriteRule。
#Options +FollowSymLinks
RewriteEngine on
RewriteRule ^$ http://domainb.com/page [R=301,L]
RewriteRule ^(.+)$ http://domainb.com/$1 [R=301,L]
答案 1 :(得分:0)
如果您对处理htaccess
命令
我自己一直在使用这个https://wordpress.org/plugins/redirection/,因此很容易管理。它支持通配符和一切!