Force trailing slashes is raising a 301 according to the HTTP response header, which is great, but the destination page is cdseopro.php - the 404 error page.
Therefore, all URLs without the trailing slash will be redirected to the same page leading to Duplicate Title, Description and Content errors!
Code:
# WCM - Force trailing slashes
#RewriteCond %{REQUEST_URI} ^/[^\.]+[^/]$
#RewriteRule ^(.*)$
http://%{HTTP_HOST}/$1/ [R=301,L]
# / WCM - Force trailing slashes
Any suggestions please?