以下のような、「<IfModule mod_alias.c>」で始まる場所を見つけます
<IfModule mod_alias.c>
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/"..
#
Alias /jservdocs/ "E:\OraHome_1\Apache\Jserv\docs/" この辺は、環境により異なります
Alias /javacachedocs/ "E:\OraHome_1\javacache\javadoc/"
Alias /icons/ "E:\OraHome_1\Apache\Apache\icons/"
<Directory "icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule mod_perl.c>
Alias /perl/ "E:\OraHome_1\Apache\Apache/cgi-bin/"
</IfModule>
〜〜以下を追加〜〜
Alias /procgi7/ "C:/InetPub/procgi7/"
<Directory "C:/InetPub/procgi7">
Options Indexes FollowSymLinks MultiViews ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
〜〜ここまで〜〜
|