I am trying to remove trailing-slash from one of my website and it works but want to keep trailing-slash on a few URLs and want to remove from all remaining. The website content is accessible based on the region you are in or the region you choose.
The website has region-specific setup, below is the website structure setup example
India - example.com/in/
US - example.com/us/
UAE - example.com/ae/
International - example.com
and other pages like
example.com/in/products
example.com/us/blogs
example.com/product
I want to keep trailing slash after regions like example.com/us/
, example.com/uk/
but want to remove from all remaining URLs like
example.com
example.com/us/products
example.com/us/blogs
example.com/blogs
My existing code removes trailing slashes from all URL
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.*)/$
RewriteRule ^(.+)/$ $1 [R=307,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
How to make this possible in codeigniter 3 setup?