gpt4 book ai didi

apache - "site down"页的重写规则

转载 作者:行者123 更新时间:2023-12-04 17:05:46 27 4
gpt4 key购买 nike

我试图安装这个 .htaccess 来通知我的用户站点维护。似乎第一个 [L] 不起作用,第二个重写正在完成所有工作。

你们怎么做网站维护消息?

RewriteEngine on

RewriteRule ^s/down$ index.html [L]
RewriteRule ^(.*)$ http://metaward.com/s/down [R=302,L]

最佳答案

您不需要外部重定向。只需发送 503 status code和你的错误文件。

RewriteCond %{ENV:REDIRECT_STATUS} !=503
RewriteRule ^(.*)$ /503.html [R=503,L]
ErrorDocument 503 /503.html

但是您需要 Apache 2.x 才能使用带有 R 标志而不是 3xx 的不同状态代码。

关于apache - "site down"页的重写规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1337837/

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