Question
I am working on a SaaS platform and I hope to be able to give customers unique URLs. However, the entire platform is one big system/database, and the URLs would be local-specific.
For example, a submitted product for sale in Brooklyn, NY might look like:
"AppName.com/ny/brooklyn/products/product-name"
But since the Borough of Brooklyn is my customer, they may want to have their own URL, such as BrooklynProducts.com. In that case, I would want the URL to be
"BrooklynProducts.com/products/product-name".
How would I support many locations and states, have all the events listed in a single database, and still offer my customers a unique URL?
Can you do a rewrite that makes "AppName.com/ny/brooklyn" be renamed to BrooklynProducts.com, and then add (/products/product-name) after it?
Answer
URL rewriting is just code.
Determine the URL structure you prefer + then hire someone to write a system to provide the URL rewriting based on your design doc.