Hey, I'm having a bit of trouble with this vanity url. I have a setup like:
url.com/service/dir/dir/dir/page_20398394
I basically want it to ignore the filler directories, go to page:
url.com/services/?n=20398394
My original rule was:
RewriteRule ^services/page_(.*)/$ /services/?n=$1 [L]
Which I modified to:
RewriteRule ^services/(+[A-Za-z0-9]+)/page_(.*)/$ /services/?n=$1 [L]
after I decided to go with the vanity directory system.
Any help would be appreciated,
thanks for the reply.