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.
画像ファイルをリダイレクトせずに、htaccess ファイルを使用してすべてのページ (ページのみ) を index.html にリダイレクトする方法。何らかの理由でこのコードを使用していますが、index.html ページの画像ファイルが表示されません。
RewriteEngine on RewriteCond %{REQUEST_URI} !^/index.html$ RewriteRule .* /index.html [L,R=302]
最後の行の前に次を追加します
RewriteCond %{REQUEST_URI} !(\.png|\.jpg|\.gif|\.jpeg|\.bmp)$