Ron Smith wrote:
> Here's a tough one for the experts...
>
> I have the Apache Web Server running - it is accessible and working fine.
> What I would like to do is have a separate web page for each user name I have
> on the system. Is that do-able? If so, how can I do it?
>
> Thanks to one and all for your expert advice...
>
> Ron
In your httpd.conf file use this line if not already there
UserDir public_html
where public_html is a sub-directory in each user's root directory. Then to
access this page the URL you'd use is
http://yourdomain/~username
Mark