Creating virtual directories on Apache:
Note: If you ran the ArcIMS 4.0.1 Post Installer, it should have already created
the neccessary virtual directories in your Apache webserver automatically (by updating httpd.conf).
In which case, you won't need to create them manually, and can simply skip this step.
After installing ArcIMS, you must create virtual directories for Manager, output, and website. A virtual directory is a mapped location on the Web server to a physical path on the hard drive.
Note: If you browsed to the location of your Web server root directory to create directories for output and website (the Web Site Working Directories) during ArcIMS installation, you don't need to create virtual directories for output and website (you can skip this step).
a. Stop the Apache Web Server.
b. Make a copy of Apache's configuration file (httpd.conf) and name the copy:
httpd.conf.before_ArcIMS
c. Open
<Apache Installation Directory>/conf/httpd.conf
In the Alias section, add the following for website and server output:
Alias /output "/<Path to output directory>/output"
<Directory "/<Path to output directory>/output">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Alias /website "/<Path to website directory>/website"
<Directory "/<Path to website directory>/website">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
d. In order for the Web pages designed in ArcIMS to start automatically,
make sure your DirectoryIndex line includes default.htm. For example:
DirectoryIndex index.html default.htm
e. Save and close the httpd.conf file.
f. Start the Apache Web Server.
See "Step 5: Configure ArcIMS" in the ArcIMS 4.0 Installation
Guide for the final step required to get ArcIMS running.