by Alan Hess.
Hi
A simple trick would be to make a short 'index.html' file in the www folder with a redirect in the head portion. It will auto redirect after 3 secs in the example below. It works on modern browsers but include a link for older browsers perhaps?
<head>
<metahttp-equiv="refresh"content="3;url=http://your-domain.com/moodle/index.php">
</head>
<body>
Redirecting in 3 secs - <a href="http://your-domain.com/moodle/index.php">or click here for Moodle</a>
</body>
If you have access to your server config you can do it better by editing your webserver software (on the server). In Apache on Linux you'd simply change the path for web root to include the moodle i.e. /var/www/moodle instead of /var/www , or even better still put all the moodle files and data somewhere else and setup an 'alias' to redirect the URL to the files. You'll need to brush up on how apache works if you don't already know though.
Hope that's of help
Alan