我可以显示网址目录名称

时间:2017-11-26 20:55:54

标签: php url directory display

请帮忙。 我的网站有错误,没有找到页面。如果有一些搜索 http://example.com/example。 如何在我这边显示错误页面? “未找到示例” 或者如果有人搜索,http://example.com/test 如何在我的侧面错误页面中显示消息,如下所示? “未找到测试”

1 个答案:

答案 0 :(得分:0)

您可以使用类似

的内容提取网址路径
<?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];