.htaccess非www子域到www查询字符串

时间:2016-11-29 01:51:22

标签: .htaccess

想重定向:

http://david.example.com/post/84747

要:

http://www.example.com/post/84747

请记住子域和查询参数是动态的

1 个答案:

答案 0 :(得分:0)

将其放入.htaccess:

RewriteEngine on
RewriteCond %{HTTP_HOST} david.example.com
RewriteRule ^(.*)$ http://example.com:80$1 [L]