Apache localhost 的默认文件
我安装了apache2。当我输入 http://localhost 时,它会转到文件 http://localhost/class/index.php 。我如何将其更改为 http://localhost/index.html 或任何其他页面?我将在哪个文件中找到执行此操作的设置?谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的文件中找到
DirectoryIndex
指令Apache 配置文件 (httpd.conf) 或将其添加到 .htaccess 文件并将其更改为如下所示:如果您想将默认索引文件限制为仅 index.html:您还可以包含更多内容资源,并且它们将按顺序使用例如,
如果 index.html 和 index.php 都存在,则首先显示 index.html 文件。
如果您对 httpd.conf 文件进行了更改,请不要忘记重新启动 Apache。
有关详细信息,请参阅 mod_dir 文档。
Find the
DirectoryIndex
directive in your Apache configuration file (httpd.conf) or add it to a .htaccess file and change it to look like this if you want to limit your default index file to just index.html:You can also include more resources and they will be used in the order given, e.g
would display the index.html file first if both index.html and index.php existed.
Don't forget to restart Apache if you made the change to the httpd.conf file.
Look at the mod_dir documentation for more information.
Apache 不会触发 HTTP 重定向,除非您指示它这样做。
我的建议是打开您最喜欢的文本编辑器并在以下位置搜索
class
字符串:*.conf
文件。.htaccess
文件。如果找不到任何内容,您还可以在
*.php
代码中搜索header()
调用。Apache will not trigger HTTP redirections unless you instruct it to do so.
My advice is that you open your favourite text editor and search for the
class
string in the following locations:*.conf
files inside the Apache installation directory..htaccess
files inside your HTML directores.If that fails to find anything, you could also search for
header()
calls in your*.php
code.