正常に動作する.htaccessファイルで index.php
(index.html
ただしランディングページのみ)の優先度を設定しようとしています
しかし、?page_id=16
そのために、私が望まない同じindex.htmlページも表示します
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
DirectoryIndex index.html index.php
RewriteRule . /index.php [L]
注:ワードプレスを使用しています。