即使在添加带有随机文本和数字的问号后,主页也会像往常一样加载
Homepage loads as usual even after adding question mark with random text and number
是这样的
https://www.exampledomain.org/?1234
https://www.exampledomain.org/?asdf
https://www.exampledomain.org/?asd123
为什么会发生这种情况,如何解决?
在 URL/Domain 中问号后传递的任何内容本质上都是查询字符串。查询字符串基本上是变量,可以与 PHP 一起用于您网站上的自定义逻辑。这可以通过超全局变量 $_GET[].
来完成
您可以在此处阅读更多内容https://www.php.net/manual/en/reserved.variables.get.php and here https://www.w3schools.com/php/php_superglobals_get.asp
此行为是预期的,并且可以正常运行。
是这样的
https://www.exampledomain.org/?1234
https://www.exampledomain.org/?asdf
https://www.exampledomain.org/?asd123
为什么会发生这种情况,如何解决?
在 URL/Domain 中问号后传递的任何内容本质上都是查询字符串。查询字符串基本上是变量,可以与 PHP 一起用于您网站上的自定义逻辑。这可以通过超全局变量 $_GET[].
来完成您可以在此处阅读更多内容https://www.php.net/manual/en/reserved.variables.get.php and here https://www.w3schools.com/php/php_superglobals_get.asp
此行为是预期的,并且可以正常运行。