将动态网站URL重定向到其动态子域URL

时间:2015-10-05 16:54:08

标签: .htaccess mod-rewrite

noob在这里。我该如何重定向:

修改

http://domain.com/members/index.php/register/params?item=1&pname=productname&pid=1289465219

http://members.domain.com/index.php/register/params?item=1&pname=productname&pid=1289465219

用htaccess吗?

其中" item"," pname"和" pid"变量是动态的。

1 个答案:

答案 0 :(得分:0)

尝试将此添加到文档根目录中的htaccess文件:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteCond %{QUERY_STRING} (^|&)item=
RewriteCond %{QUERY_STRING} (^|&)pname=
RewriteCond %{QUERY_STRING} (^|&)pid=
RewriteRule ^index\.php/register/params$ http://subdomain.domain.com/index.php/register/params [L,R]