Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在浏览器中输入时,http://localhost为什么它会打开名为 index.html 的文件?
http://localhost
相反,如果我从连接到 Apache 的本地驱动器中删除 index.html,那么当我http://localhost在浏览器中再次键入时,这一次它会打开一个树状文件结构(“索引 /”)页面。
这些是默认设置吗?如何更改它们?
是的,Apache 索引任何名为“索引”或“默认”的文件,是的,您可以使用文件更改这些.htaccess文件
.htaccess
打开记事本并输入:
DirectoryIndex Home.html
将其另存为 .htaccess 扩展名(无名称)C:\wamp\www\
C:\wamp\www\
如您所见,我们将文件 Home.html 设置为被索引而不是 ie index.php,default.php或者index.html
index.php
default.php
index.html