从http://example.com/重定向到http://example.com/?welcome=2

时间:2016-03-11 22:21:07

标签: wordpress .htaccess redirect

我希望我的默认网址重定向到mydomain.com/?welcome=2

我试过这个,但它不起作用,我也在使用wordpress

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$  http://example.com/?welcome=2$1 [L,R=301]

1 个答案:

答案 0 :(得分:0)

您可以使用以下内容:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^$  http://example.com/?welcome=2 [L,R=301]

上面的代码将重定向