[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cobalt-users] View personal users site with out the ~ in the url
- Subject: [cobalt-users] View personal users site with out the ~ in the url
- From: David <davidgilbert@xxxxxxxxx>
- Date: Wed Jan 17 17:48:31 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
Hello,
I would like for my users to be able to view their site with out putting
the ~ in the url.
www.mysite.com/username/
not like this
www.mysite.com/~username/
I tried editing httpd.conf
I removed the ~ from this line and it word but the main site started
showing the directory structure instead of loading the index.html file.
AliasMatch ^/~([^/]+)(/(.*))? /home/sites/site4/users/$1/web/$3
I then tried editing this line
AliasMatch ^/users/([^/]+)(/(.*))? /home/sites/site4/users/$1/web/$3
To this
AliasMatch ^/([^/]+)(/(.*))? /home/sites/site4/users/$1/web/$3
And that did the same thing.
Also is it possible to add a user to a site and have it so they can
access it as a sub domain.
www.user.mysite.com
I tried searching the archives for ~user and got flooded with unrelated
problems.
Thanks