Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这样的重写规则(只是为了实现 mvc):
^signup$ index.php?page=signup
并且此重写规则用于将请求映射/signup到index.php?page=signup 但是当我请求时signup?username=haha,似乎在我的 signup.php 代码中$_GET["username"]根本没有设置。
/signup
index.php?page=signup
signup?username=haha
$_GET["username"]
有人可以告诉我如何解决它,以便我可以进入$_GET["username"]我的 signup.php 代码。