> AliasMatch ^/users/([^/]+)(/(.*))? /home/sites/site17/users/$1/web/$3 > AliasMatch ^/([^/]+)(/(.*))? /home/sites/site17/users/$1/web/$3. > > Unfortunately the ^/users rendered the server offline after reboot and > the second one turned the main site into a free for all listing of its > content, but no > proper viewing of any files.
You must set the path in /home/sites/site17/.... to your path for that virtual host in the httpd.conf. and you must use ^/users/ The right AliasMatch to add to your site will be then AliasMatch ^/users/([^/]+)(/(.*))? /home/sites/set_your_site_number_dir_here/users/$1/web/$3 _______________________________________________ cobalt-developers mailing list [EMAIL PROTECTED] http://list.cobalt.com/mailman/listinfo/cobalt-developers
