.htaccess 和 httpd.conf 中重写规则的优先级
我对哪个文件的重写规则在 apache (xampp) 服务器中获得层次结构感到困惑。
- .htaccess 规则是否优先于 httpd.conf 规则?
- 如果可以为每个文件添加相同的规则,那么这两个文件有什么区别?
让我对这个东西感到好奇的是,因为我想每秒更新我的图标(出于学习目的),但我的 .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.
- Do .htaccess rules get priority over httpd.conf rules?
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论