Hi i discovered that my site contain a duplicate one with /index.php/ in all the URLs.
If i redirect this last URLs (in .htaccess) to all URLs without /index.php/ , something could happened to the website? Crashing or similar?
Many thanks
Try this on .htaccess ..
RewriteEngine On RewriteRule ^index\.php/(.*)$ /$1 [R=301,L]
Enables the Apache mod_rewrite engine. RewriteEngine On and test it