<HTML>
<HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META content="OPENWEBMAIL" name=GENERATOR>
</HEAD>
<BODY bgColor=#ffffff>
I don't think that will work Darrell.  
<br />
<br />He said the directory was at www.nameofsite.com/drupal6, not www.nameofsite.com/web/drupal6.  That would require Apache to be able to go up above the root directory of the website /web.  I don't think it can do that without modifying the Apache configuration.
<br />
<br />You would have to modify the apache include file for that website.  Of course, that could be done by just changing the DocumentRoot line in the include file for that website (/etc/httpd/conf/vhosts/site##).  But fooling with those can have other side-effects.
<br />
<br />Its easier and safer to move that drupal6 directory under the www.nameofsite.com/web/ directory and then put in a redirect file.  In the root of the /web directory, put in a index.php file like this:
<br />
<br /><?php
<br />header("HTTP/1.0 301 Moved Permanently");
<br />header("Location: http://www.nameofsite.com/drupal6");
<br />?>
<br />
<br />If you've got a non-standard index filename in your drupal6 directory, add it to the line like:
<br />http://www.nameofsite.com/drupal6/non-standard-file-name.html.
<br />
<br />
<br />
<br />Chuck
<br />
<br />
<br /><font size="2">
<br />
<br /><b>---------- Original Message 
-----------</b>
<br />
From: "Darrell D. Mobley" <dmobley@uhostme.com> 

<br />
To: "'BlueOnyx General Mailing List'" <blueonyx@blueonyx.it> 

<br />
Sent: Mon, 19 Oct 2009 14:36:21 -0400 

<br />
Subject: [BlueOnyx:02680] Re: index directory of the site. 

<br />

<br />> > -----Original Message----- 
<br />> 

> From: blueonyx-bounces@blueonyx.it [mailto:blueonyx-bounces@blueonyx.it] 

<br />> 

> On Behalf Of Mr. Julliet Smit 
<br />> 

> Sent: Monday, October 19, 2009 2:19 PM 
<br />> 

> To: BlueOnyx General Mailing List 
<br />> 

> Subject: [BlueOnyx:02679] index directory of the site. 
<br />> 

>  
<br />> 

> Hi, 
<br />> 

>  
<br />> 

> I have the following directory <a target="_blank" href="http://www.nameofthesite.com/">www.nameofthesite.com</a>/drupal6 . I want 
<br />> 

> to make it the standard directory. 
<br />> 

> Is it possible to do it with the interface settings of BlueOnyx ? 
<br />> 

<br />> 

Put a .htaccess file in the web root "/" directory with a redirect to 
the 
<br />> 

/drupal6 directory. 
<br />> 
<br />> 

_______________________________________________ 
<br />> 

Blueonyx mailing list 
<br />> 

Blueonyx@blueonyx.it 
<br />> 

<a target="_blank" href="http://www.blueonyx.it/mailman/listinfo/blueonyx">http://www.blueonyx.it/mailman/listinfo/blueonyx</a> 

<br /><b>------- End of Original Message 
-------</b>
<br />

</font>
</BODY>
</HTML>