假设我只想重定向http://example.com/
到http://example.com/main/
,我该怎么做?
这是我现在正在做的事情:
RewriteEngine On
RewriteBase /
RewriteRule ^$ main/ [R=301,L]
问题是,它也在重定向查询字符串。例如:http://example.com/?channel=science
正在被重定向到http://example.com/main/?channel=science
.
我不希望仅重定向有效/指定的非空(即指定值)查询字符串。例如:
http://example.com/?channel
也应该重定向。我该怎么做呢?