Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サイトを完全にオフラインにしていますが、ダウンする前に 1 ~ 2 週間スプラッシュ ページを表示しています。.htaccess ファイルを編集してスプラッシュ ページを表示するにはどうすればよいですか? ページ自体 (ルート ディレクトリ) と /images ディレクトリ内の 2 つの画像を許可する必要があります。
.htaccessWeb サイトのルートにある に次の構成を配置します。
.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]