我需要将 www.example.com/index.php?store=test 中的网址重写为 test.example.com 或 www.test .example.com的的
任何人都可以建议我如何在.htaccess文件中实现重写代码。
提前致谢。
答案 0 :(得分:0)
尝试将以下内容添加到/root/.htaccess:
RewriteEngine on
#--Redirect from "www.example.com/index.php?store=test"--#
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$
RewriteCond %{THE_REQUEST} /index\.php\?store=test [NC]
#--to "store.example.com"--#
RewriteRule ^ http://store.example.com [L,R]