联通IPv6首测

已经证明是MS的自带的隧道在作怪。。。但是拨号模式还没测试。。

事实证明了小镇已经启用了IPv6,至少我这边的联通是的,通过电脑拨号的话会发现多一条6TO4的隧道适配器,谷歌的IPv6网站直接登录,可以解析。

继续阅读

多域名通过.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