Double Forward Slash in URL //
-
My client is using double forward slahes in URL like this "//" is this affecting SEO?
-
Double slashes only hamper SEO if there are links connecting to that content. If there are no links then its a non issue.
Here's some code to place in .htaccess (if applicable)
Prevent double slashes in URLs, e.g. //Blog and /Home//About
RewriteCond %{REQUEST_URI} ^(.)//(.)$
RewriteRule . %1/%2 [R=301,L]