请帮助。我的网站有错误,找不到页面。如果有一些搜索http://example.com/example。如何在我的侧错误页面中显示?"找不到示例"或者,如果有人搜索,http://example.com/test如何在我的侧面错误页面中显示一条消息?"未找到测试"
您可以使用类似的东西提取url 路径
<?php
//http://example.com/example
$path = trim(parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH), "/");
echo htmlspecialchars($path) . " not found";
//will output "example not found";
,如果您只需要提取路径的第一个目录
$firstDirectory = explode("/", $path)[0];