我知道如何从 .htaccess 中的规则中删除 index.php:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
但是当我在 404 日志中看到这个时,我不知道该怎么办:
video/index.php
video/index.php/index.php
video/index.php/index.php/index.php
video/index.php/index.php/index.php/index.php
有没有一种方法可以删除所有这些而不必逐个拼写出来?就像我可以遍历重写规则以继续删除 index.php 直到它消失吗?
非常感谢,菲尔