Hi, I have these 2 mod_rewrite lines
RewriteRule ^int[/]?$ / [L]
RewriteRule ^int/([A-Za-z0-9-._/]+)$ /$1 [L]
I use the first one to match:
site.com/int
site.com/int/
And the second one to match
site.com/int/<whatever here>
Is there a way I can merge these 2 into 1 case/expression?
Regards,