I have single htaccess file for many domains and I need to force a trailing slash at the end of my url for a specific domain only.
I have tried the existing rewrite conditions and they work globally I just need a domain specific solution.
RewriteEngine on
RewriteCond %{REQUEST_URI} /+[^\.]+$
RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=301,L]