Hi,
I currently use htaccess to redirect non-existent html pages to php programs with parameters, for example:
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)\.html$ phptemplate.php?page=$1 [L]
RewriteRule ^$ phptemplate.php?page=index [L]
This all works fine and dandy with never a problem, but now I have to do something different and I'm struggling.
I have 200+ unique users on a website and each one needs to access the system via an unique url eg :
www.example.com/Fred_Bloggs or www.example.com/John_Smith
this should take them to a page www.example.com/register.html where they will sign in and then ideally they would all see a site which was www.example.com/UNIQUE_NAME/index.html, www.example.com/UNIQUE_NAME/agenda.html etc etc
is this possible without creating 200+ folders?
Cheers
Andy