I have the following URLs:
example.com/test/ example.com/test/mode/ that needs to be automatically converted to:
example.com/test example.com/test/mode Basically, I want the trailing slash to be removed.
My existing .htaccess
RewriteEngine On # Rule to handle example.com/xyz/mode RewriteRule ^(\w+)/(\w+)/?$ /index.php?id=$1&mode=$2 [L,QSA] # Rule to handle example.com/xyz RewriteRule ^(\w+)/?$ /index.php?id=$1 [L,QSA]