.htaccess 和 httpd.conf 中重写规则的优先级

发布于 2025-01-07 11:36:55 字数 489 浏览 0 评论 0原文

我对哪个文件的重写规则在 apache (xampp) 服务器中获得层次结构感到困惑。

  1. .htaccess 规则是否优先于 httpd.conf 规则?
  2. 如果可以为每个文件添加相同的规则,那么这两个文件有什么区别?

让我对这个东西感到好奇的是,因为我想每秒更新我的图标(出于学习目的),但我的 .htaccess 文件中的下面的代码不起作用。我的 .htaccess 文件与我的 index.php 文件一起位于服务器根文件夹中,当我访问 http://localhost 时,该文件会被识别。

<IfModule mod_rewrite.c>
    RewriteEngine On
ExpiresActive On
ExpiresByType image/x-icon "access plus 1 seconds"   
</IfModule>

有什么想法吗?

I'm confused on which file's rewriting rules gets hierarchy in an apache (xampp) server.

  1. Do .htaccess rules get priority over httpd.conf rules?
  2. If you can add the same rules to each, what is the difference between these two files?

What got me wondering about this stuff is because I'd like to update my favicon every second (for learning purposes) but the code below in my .htaccess file isn't working. My .htaccess file is in the server root folder along with my index.php file which is recognized when I go to http://localhost.

<IfModule mod_rewrite.c>
    RewriteEngine On
ExpiresActive On
ExpiresByType image/x-icon "access plus 1 seconds"   
</IfModule>

Any thoughts?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文