|  | | ● あけび 2001. 9. 27 (木) / 20:40 ◇
 |  | 
 | | ・c:\apache に ユーザーディレクトリ users を作成 
 ・c:\apache\conf\httpd.conf をテキストエディタで開いて、以下の部分を変更。
 
 
 273行目付近
 <Directory />
 Options FollowSymlinks
 AllowOverride None
 </Directory>
 ↓
 <Directory />
 Options All
 AllowOverride All
 </Directory>
 
 
 288行目付近
 <Directory "C:/Apache/htdocs">
 ↓
 <Directory "C:/Apache/users">
 
 
 297行目付近
 Options Indexes FollowSymlinks MultiViews
 ↓
 Options All
 
 
 304行目付近
 AllowOverride None
 ↓
 AllowOverride All
 
 
 347行目付近
 DirectoryIndex index.html
 ↓
 DirectoryIndex index.html index.htm index.cgi
 
 
 783行目付近
 #AddHandler cgi-script .cgi
 ↓
 AddHandler cgi-script .cgi
 
 |  | 
 
 | 
 | 
 |