Apache localhost 的默认文件

发布于 2024-11-26 21:21:49 字数 321 浏览 1 评论 0 原文

我安装了apache2。当我输入 http://localhost 时,它会转到文件 http://localhost/class/index.php 。我如何将其更改为 http://localhost/index.html 或任何其他页面?我将在哪个文件中找到执行此操作的设置?谢谢!

I have apache2 installed. When i type http://localhost it goes to a file http://localhost/class/index.php . How do i change it to say http://localhost/index.html or any other page? Which file will I find the setting to do this? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷夜 2024-12-03 21:21:49

在您的文件中找到 DirectoryIndex 指令Apache 配置文件 (httpd.conf) 或将其添加到 .htaccess 文件并将其更改为如下所示:如果您想将默认索引文件限制为仅 index.html

DirectoryIndex index.html

您还可以包含更多内容资源,并且它们将按顺序使用例如,

DirectoryIndex index.html index.php

如果 index.htmlindex.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:

DirectoryIndex index.html

You can also include more resources and they will be used in the order given, e.g

DirectoryIndex index.html index.php

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.

街角迷惘 2024-12-03 21:21:49

Apache 不会触发 HTTP 重定向,除非您指示它这样做。

我的建议是打开您最喜欢的文本编辑器并在以下位置搜索 class 字符串:

  • Apache 安装目录中的 *.conf 文件。
  • HTML 目录中的 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文