多域名通过.htaccess实现301永久重定向

.htaccess 常见使用方法

#301主域重定向
RewriteCond %{HTTP_HOST} ^000.net [NC,OR]
RewriteCond %{HTTP_HOST} ^www.000.net [NC,OR]
RewriteCond %{HTTP_HOST} ^www.root9000.com [NC]
RewriteRule ^(.*) https://root9000.com/$1 [R=301,L]

#301域名目录重定向
Redirect permanent /bbs https://bbs.root9000.com/
Redirect permanent root9000.com/blog

发表在 VPS