gpt4 book ai didi

.htaccess - htaccess 全部重写为index.html

转载 作者:行者123 更新时间:2023-12-02 20:21:41 38 4
gpt4 key购买 nike

我正在尝试编写 .htaccess 文件,以便无论用户请求什么,他都会获得页面 index.html

我写了这个:

Options +FollowSymlinks
RewriteEngine on
RewriteRule .* index.html [NC]

我知道这会导致:无论传入的请求 URL 是什么,即 www.domain.com/*** (无论斜杠后面出现什么),结果都将是页面 www.domain.com/index.html

但是,我收到服务器错误。我错过了什么?

注意:我不希望它成为永久重定向,我只是想用该 index.html 页面“隐藏”我网站的内容几个小时(其中说该网站正在维护中)。

最佳答案

如果您想将所有内容重定向到临时维护页面,您可以执行以下操作:

RewriteEngine on
RewriteCond %{REQUEST_URI} !^/maintenance.html$
RewriteRule .* /maintenance.html [L,R=302]

R=302 标志用于生成临时重定向

关于.htaccess - htaccess 全部重写为index.html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12495897/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com