本文介绍了如何把一个网站进行维护?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我现在可以看到,我很少要求或写下我需要的帮助,因为我不能添加图片对我来说很难。如果有办法请私人消息我@Fred -ii-和@Dagon感谢。
解决方案
p>
在网络根目录中添加或编辑.htaccess文件
RewriteEngine On
RewriteBase /
RewriteCond%{REQUEST_URI}!^ / maintenance\.html $
RewriteRule ^(。*)$ http://yoursite.com/maintenance.html [R = 307 ,L]
会将所有访问者发送到maintenance.html页面。
这也会阻止用户访问您想在维护模式下可用的图片和其他资源
I can see now that I poorly asked or wrote what I need help with, since I can not add images it's hard for me. If there is a way please private message me @Fred -ii- and @Dagon thanks.
解决方案
non php method:
add or edit .htaccess file in the web root directory
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/maintenance\.html$
RewriteRule ^(.*)$ http://yoursite.com/maintenance.html [R=307,L]
will send all visitors to the maintenance.html page.
this will also stop people accessing images and other resources which you may want to be available during maintenance mode
这篇关于如何把一个网站进行维护?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!