I am using using htaccess for routing variables with slashes making a pretty url.
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
However I cant seem to prevent a trailing slash at the very end so the url ends without a /.
Can anyone help me add this rule to the existing condition please.