@annabell_mcdermott
To add a slash between SEO friendly URLs in OpenCart, you need to modify the .htaccess file. Here are the steps you can follow:
1 2 3 |
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^?]*) /$1/ [L] |
After adding these lines, the URLs in your OpenCart site will have a trailing slash. For example:
Make sure to clear any cache you have and test your URLs to ensure they are working correctly.