Fixed index.php problem in URL pages on Drupal 8
If the links on the Drupal 8 site contain index.php in the URL, you need to add the following code to the .htaccess file:
RewriteCond %{THE_REQUEST} /index\.php(/(.*?))? [NC]
RewriteRule ^(.*?)index\.php(/(.*?))?$ /$1$2 [L,R=301,NC,NE]