.htaccess 重定向到缓存文件(如果存在)

发布于 2024-10-25 17:01:19 字数 206 浏览 1 评论 0原文

我的根网络目录中有一个index.php 文件。我想先检查 /cache/index.html 是否存在,如果存在,则显示它。

否则,继续使用/index.php

Apache被配置为首先显示index.html,然后显示index.php,所以我认为我有符号链接/index.html到/cache/index.html,但我宁愿不这样做。

谢谢

I have an index.php file in my root web dir. I want to check if /cache/index.html exists FIRST, and if so, display it.

Otherwise, continue using /index.php

Apache is configured to display index.html first, then index.php, so one thought I had was symlink /index.html to /cache/index.html, but I would rather not.

Thanks

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

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

发布评论

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

评论(1

爱冒险 2024-11-01 17:01:19

一种方法是

DirectoryIndex cache/index.html index.php 

注意,这也会影响相对于子目录的所有子目录。如果您尝试首先加载 htt://www.example.com/blub/ (并且 /blub/ 存在) /blub/cache/index.html搜索,然后搜索 /blub/index.html。这通常不是问题,但您可能需要添加 index.html 或在指令末尾使用的其他索引名称。

One way to do it is

DirectoryIndex cache/index.html index.php 

Note that this affects all subdirectories, as well, relative to the subdirectory. If you try to load htt://www.example.com/blub/ (and /blub/ exists) first /blub/cache/index.html is searched, then /blub/index.html. This generally isn't a problem, but you might want to add index.html or other index names used at the end of the directive.

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