The below apache httpd config may help. It is not standard, but is
ok, to have a web directory with both html docs and cgi scripts.
In this case, dont use ScriptAlias, but 'AddHandler cgi-script .cgi'
to make the web blast script function.
Alias /blast/ "/full/path/to/blast/"
<Directory "/full/path/to/blast/">
AllowOverride None
Options ExecCGI -Indexes -Includes FollowSymLinks MultiViews
Order Allow,Deny
Allow from all
Deny from env=is_nasty env=is_robot
AddHandler cgi-script .cgi
AddHandler imap-file map
</Directory>
-- Don
--
-- d.gilbert--bioinformatics--indiana-u--bloomington-in-47405
-- gilbertd at indiana.edu--http://marmot.bio.indiana.edu/
---