I need to create custom urls for my users, for ex: www.example.com/alpha, www.example.com/beta. I was creating symlinked directories, which I think worked as a good starting point for prototyping. However, now I need to do this at a scale, running on several web servers behind a load balancer. I am not sure on the right way to do this.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

If you are running on an Apache server and you have access to .htaccess files then try this in a .htaccess file

RewriteEngine On
RewriteRule ^(.*)\.html$ index.php?p=$1

This will point all URL's to index.php?p=* internally. A user will see the .html, and the server interprets it as the pointed url. Example: yourdomain.com/cocacola.html -> yourdomain.com/index.php?p=cocacola

link|improve this answer
great thanks much – archie Apr 8 '11 at 2:05
Thanks for the accepted question :) Hope your project goes well! – Craig White Apr 8 '11 at 2:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.