John Meyer:
Well, I got it working, sort of, with this command in httpd.conf
Alias /johnmeyer /home/webpublisher/public_html <Directory /home/webpublisher/public_html>
Order allow,deny Allow from all
</Directory>
Since I'm running this as a test server, I guess this will do for starters.
I think you mean, Alias /webpublisher/ /path/to/publishweb/folder Which creates a external folder "symbolic link" to the web server. A bit more secure. >>FOR SECURITY REASONS<< Because Apache will serve any file it can access to anyone caring enough to look, we'll block the entire filesystem. Then allow acess to the DocumentRoot directory.. <Directory /> Order Deny,Allow Deny from all </Directory> <Directory /home/johnmeyer/public_html> Order Allow,Deny Allow from all </Directory> Good Luck to ya' John! Krack