Long story short, I want to have both example.com/aJ5
and example.com/any-other-url
working together.
I'm using apache and not very good at writing regex.
I have already a global RewriteRule
which sends everything to the app entry point.
What I need is to tell apache if length($path) is <= 5 chars
then rewrite to another location.
I know I can use {1,5}
like syntax in regex, but don't really know if it's what I'm looking for.
I'd like to implement this at web-server level rather than php level. Any help is appreciated.