Google search console writes that on my site there is a repeated metadata on several links due to the fact that for some reason it sees links both with parameters and without (CNC):
http://site.ru/?menu=portfolio/gray and
http://site.ru/portfolio/gray Here are the settings. Htaccess:
AddDefaultCharset UTF-8 Options +FollowSymLinks Options -Indexes RewriteEngine On RewriteBase / ErrorDocument 404 /404.php RewriteRule ^index.php$ / [QSA,R=301] RewriteRule ^index.html$ / [QSA,R=301] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+)$ /?menu=$1 [QSA,L] Where am I wrong? Or what did I do wrong? Help me to understand.