我应该在.htaccess中将所有链接从主域重定向到子域?我喜欢它,但它并不是在炒作:
RewriteCond %{HTTP_HOST} ^http://example.com/$
RewriteRule ^(.*)$ http://subdomain.example.com/$1 [R=301,L]
答案 0 :(得分:1)
你是否在第一行没有http://
和/
的情况下尝试过?
RewriteCond %{HTTP_HOST} ^example.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteRule ^(.*)$ http://subdomain.example.com/$1 [R=301,L]