我正在尝试在我的 .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]
注意:我正在使用 wordpress。