我的XAMPP网站遇到问题。我想创建一种类似用户在其中键入(例如)https://howcoolitis.net/profile/useridhere
的配置文件但是最终只会给出一个错误。
说实话,对于我尝试过的事情,除了谷歌搜索类似项目外,我没有尝试过其他任何事情,我真的不知道这是什么诚实,因为我从未使用过以前但我想使用它。
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on')
$url = "https";
else
$url = "http";
// Here append the common URL characters.
$url .= "://";
// Append the host(domain name, ip) to the URL.
$url .= $_SERVER['HTTP_HOST'];
// Append the requested resource location to the URL
$url .= $_SERVER['REQUEST_URI'];
// Print the link
$pos = strrpos($url, '/');
$search = $pos === false ? $url : substr($url, $pos + 1);
我期望它只是在URL后给我文本,但它只给出404。