Ich habe mir besonders gut gerankte Seiten angesehen (erstellt mit unterschiedlichen CMS).
Wenn du dort index.php anfügst, kommt eine 404 Fehlermeldung.
Ich vermute daher, dass es fürs SEO positiv ist, wenn beim Aufruf von index.php-Seiten eine Fehlermeldung erscheint.
Wie folgt sieht mein httaccess-Code (an dieser Stelle) bei den meisten Seiten aus:
## Mod_rewrite in use.
RewriteEngine On
## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site then comment out the operations listed
# below by adding a # to the beginning of the line.
# This attempts to block the most common type of exploit `attempts` on Joomla!
#
# Block any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root home page
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.
Weißt du/ihr, ob man das entsprechend optimieren kann?