我的网站具有如下网址地址:https://www.vfu.cz/index.php?/informace-o-univerzite/index.html
我想删除问号和index.php,所以最终URL如下所示: https://www.vfu.cz/informace-o-univerzite/index.html
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(index\.php)?\?([^&\ ]+)
RewriteRule ^ /%1? [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]