1

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

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

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

谢谢。

4

1 回答 1

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

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

于 2012-12-06T18:19:46.240 回答