Is it possible to redirect index.php
to index.php?page=something
? Every attempt I've made so far causes a redirect loop.
Is it possible to redirect index.php
to index.php?page=something
? Every attempt I've made so far causes a redirect loop.
收起
You could try this:
index.php
<?php
if(!isset($_GET["page"])){
header("Location: index.php?page=something");
exit;
}
?>
报告相同问题?