我正在使网站永久脱机,但我在它上面显示一个启动页面一两个星期才会关闭。如何编辑我的.htaccess文件以显示该启动页面?它需要允许页面本身(根目录)以及/ images目录中的两个图像。
答案 0 :(得分:14)
将以下配置放入您网站根目录中的.htaccess
:
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/splash.html$
RewriteCond %{REQUEST_URI} !^/images/usedimage.png$
RewriteCond %{REQUEST_URI} !^/images/anotherusedimage.png$
RewriteRule .* /splash.html [R=301,L]