这些index.html、index.php、.htacess 文件如何工作?这些文件的目的是什么?

发布于 2024-11-08 21:37:48 字数 59 浏览 0 评论 0原文

所有这些index.html、index.php、.htacess 文件如何工作?这些文件的目的是什么?

How all these index.html, index.php, .htacess files works ? whats the purpose of these files?

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

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

发布评论

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

评论(2

孤星 2024-11-15 21:37:48

这是一个非常广泛的问题,所以我建议你查一下。但这里是 start

  1. index.html -- 当有人访问您的网站时将返回的默认页面
  2. index.php -- 如果 .html 文件不存在则与上面相同
  3. .htaccess -- 加载自定义 mods 或者您可以重写 url 。这本身就是一整本书。所以从这里开始 http://httpd.apache.org/docs/current/howto/ htaccess.html

This is a really broad question so I suggest you look it up. But here is start

  1. index.html -- The default page that is going to be returned when someone visits your website
  2. index.php -- same as above if .html file is not there
  3. .htaccess -- loads custom mods or you can rewrite urls. This by it self is a whole book. So start here http://httpd.apache.org/docs/current/howto/htaccess.html
吻安 2024-11-15 21:37:48

如果 URL 引用目录,则 index.* 文件是默认提供的文件。

.htaccess 文件为开发人员提供了提供适用于其所在目录和所有子目录的服务器配置参数的机会。

The index.* files are default files served if the URL refers to a directory.

The .htaccess file is an opportunity for the developer to provide server configuration parameters that apply to the directory it is in and all subdirectories.

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