[このスレッドを全て表示]

あけび
2001. 9. 27 (木) / 20:37
 
885. ローカルサーバ(Apache)構築例 [Win32]
必要なもの

Apache (MSIパッケージ apache_1.3.20-win32-no_src-r2.msi)
http://httpd.apache.org/dist/httpd/binaries/win32/

ActivePerl (Windows MSIパッケージ)
http://aspn.activestate.com/ASPN/Downloads/ActivePerl/

Windows インストーラ (InstMsi.exe)
インストーラがなかったり、古い場合には最新版を入手してください。
(9x) http://www.microsoft.com/downloads/release.asp?ReleaseID=17343
(NT) http://www.microsoft.com/downloads/release.asp?ReleaseID=17344


以下に続く設置方法はあくまで一例にすぎませんので、
慣れたら自分なりに使いやすいよう変更してしまっても構いません。




あけび
2001. 9. 27 (木) / 20:40
 
889. カスタマイズ
・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



[▼次のスレッド]
INCM/CMT
Cyclamen v3.84.01