Complicated Problem - Experienced Techies needed
I'm trying to do something weird... but it should workBasically, I've moved the web files into /home/username/public_html
(i.e. for ppt it's /home/ppt/public_html )
I can access that as http://server/~username/ (or, using a virtualhost with servername)
in VirtualHost, however, I have the following two lines:
UserDir /home/ppt/users/*/public_html
AliasMatch ^/users/([^/]+)/?(.*) /home/ppt/users/$1/public_html/$2
(and I also have a /home/ppt/users/username directory(s))
problem is, I suppose they would work with pinkpt.com/~user (into /home/ppt/users/user/public_html/ )
but not with http://up/~ppt/~user/
any ideas on how to make that work?
I want http://serverip/~ppt/~hunter/ to point to /home/ppt/users/hunter/public_html/
(rather than /home/ppt/public_html/~hunter/)
/home/ppt/users/hunter/public_html/ exists, and has files in it