16
August
By default adding /index.php/ in URL so how to remove index.php from URLs in Drupal 8
I have added the following code in .htaccess file then the issue has been resolved
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC] RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
Other method you can try to stop indexing this type of URLs in Google or other search engine
Add the following code in robots.txt
Disallow: /index.php/*
© 2023.ZedAngle. All Rights Reserved.