将子域重定向到根域

时间:2014-09-25 23:00:28

标签: .htaccess url-redirection

是否可以让像http://example.com/fine-ruby这样的网页为QR码跟踪目的创建一个像http://qr.example.com/fine-ruby这样的子域名地址?

我有这个:

RewriteRule ^fine-ruby$ porto-fine-ruby.php [L]
RewriteRule ^lbv-2009$ porto-lbv2009.php [L]
RewriteRule ^tawny10years$ porto-tawny10.php [L]

我正在尝试实现以下代码(没有成功)我在Stackoverflow上从其他问题中选择。

<IfModule mod_rewrite.c>
    # handles http redirect
    RewriteCond %{SERVER_PORT} =80
    RewriteCond %{HTTP_HOST} ^qr\.example\.com$ [NC] 
    RewriteRule ^/?(.*)$ http://example.com/$1 [R=301,L,QSA,NE]
 </IfModule>

与往常一样,非常感谢任何帮助。

0 个答案:

没有答案