.htaccess重定向变量

时间:2012-12-06 18:04:29

标签: .htaccess

抱歉,我搜索了一些相关问题/答案,但不确定如何继续。

我希望默认的index.html文件自动转到index.html?id = 1

这可能吗?如果是这样,有人可以用适当的.htaccess命令帮助我吗?

谢谢你。

1 个答案:

答案 0 :(得分:1)

RewriteEngine on
RewriteBase /
RewriteCond %{QUERY_STRING} !id=
RewriteRule ^index.html$ index.html?id=1 [R=301,QSA,L]

如果查询字符串不包含id参数,则用户将被重定向到查询字符串中具有id的版本。将维护查询字符串的任何其他元素。