我正在.htaccess文件中进行更改,以将根路径(/)更改为index.php?page = terms
重定向/index.php /index.php?page=terms
但是它显示错误重定向太多次
答案 0 :(得分:0)
您是否尝试过更改索引页的名称?例如,从index.php
重定向到home.php?page=terms
该页面可能正在重定向所有index.php
页(包括index.php?page=terms
),因为毕竟毕竟是同一页面,但URL中只有一点GET信息。
或者,您可能只想使用以下内容:
if(!isset($_GET["page"])){
header("Location: index.php?page=terms");
}
,如果?page=
不存在,它将重定向。这不需要任何.htaccess
更改。