我有一个index.php
文件可以处理对服务器的所有请求。我.htaccess
以这种方式设置了 404 错误重定向:
ErrorDocument 404 /index.php
如果用户请求一个文件,例如page.php
,那么它会被正确地重定向到index.php
页面。
当用户请求$_REQUEST['page']`时page.php?page=about, then my index.php is unable to retrieve the query
,就会出现问题。using
如何about
使用 index.php获取查询$_REQUEST['page']
?