当我在localhost / index.php中键入我的URL栏时,它会将我重定向到以下URL:localhost / xampp /。为什么会发生这种情况?为什么localhost / index.php链接没有把我带到index.php页面?
答案 0 :(得分:0)
htdocs
是XAMPP提供的文件夹。如果您查看xampp/htdocs/index.php
将解析的内容localhost/index.php
,您会看到行header('Location: '.$uri.'/xampp/');
,它基本上会将您的浏览器重定向到{{1}的内容}。默认情况下,如果地址中未指定xampp/htdocs/xampp
文件,它将会搜索index.php
文件,因此您最终会在屏幕截图中指向。
有意义吗?