• 締切済み

Debian sarge apache2

/var/wwwの下に作成したindex.htmlを置いても、 http://xxx.xxxx.xx.xx/apache2-default/のテスト画面をWEB公開したままです。設定が下記になっているからだと思いますが、通常は、どの設定をどのように直すことになりますか? /etc/apache2/sites-available# cat default ・ ・ ・ ・ ・ ・ ・ DocumentRoot /var/www/ <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all # This directive allows us to have apache2's default start page # in /apache2-default/, but still have / go to the right place RedirectMatch ^/$ /apache2-default/ </Directory> ・ ・ ・ ・ ・ ・ ・

みんなの回答

  • mtfoggy
  • ベストアンサー率14% (37/255)
回答No.1

こんばんは。 RedirectMatch を無効にしてください。 /etc/apache2/sites-available/default # RedirectMatch ^/$ /apache2-default/ 変更したら、apacheを再起動、またはリロードしてください。

teo98
質問者

補足

ありがとうございます。 しかし書き込みが出来ませんでした。 /etc/apache2/sites-available# ls -ld default -rw-r--r-- 1 root root 1167 Dec 9 20:10 default /etc/apache2/sites-available# vi default ・ ・ ・ +=+=+=+=+=+=+=+ default already locked, session is read-only. default: unmodified, readonly: line 1 Press any key to continue:

関連するQ&A