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"变量是动态的。
答案 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]