httpd を起動中: [Tue Jun 19 11:14:10 2007] [warn] The Alias directive in /etc/httpd/conf/httpd.conf at line 558 will probably never match because it overlaps an earlier AliasMatch. [Tue Jun 19 11:14:10 2007] [warn] The ScriptAlias directive in /etc/httpd/conf/httpd.conf at line 583 will probably never match because it overlaps an earlier AliasMatch. [Tue Jun 19 11:14:10 2007] [warn] The Alias directive in /etc/httpd/conf/httpd.conf at line 856 will probably never match because it overlaps an earlier AliasMatch. [ OK ]
Alias /joomla /var/www/joomla <Directory /var/www/joomla> AllowOverride All </Directory>
とあります。 いずれかのファイルに・・ということは、このjoomlaのconfが存在することで既に条件をみたしているので、 httpd.conf 内にある 558行以降 Alias /icons/ "/var/www/icons/"
<Directory "/var/www/icons"> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory>
583行 ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
# # "/var/www/cgi-bin" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. # <Directory "/var/www/cgi-bin"> AllowOverride None Options None Order allow,deny Allow from all </Directory>
856行 Alias /error/ "/var/www/error/"
<IfModule mod_negotiation.c> <IfModule mod_include.c> <Directory "/var/www/error"> AllowOverride None Options IncludesNoExec AddOutputFilter Includes html AddHandler type-map var Order allow,deny Allow from all LanguagePriority en es de fr ForceLanguagePriority Prefer Fallback </Directory>
を削除もしくはコメントアウトする。ということでよろしいのでしょうか?
Re: ご指導願います。 ( No.5 )
????????? 2007/06/19 12:57
????????? 管理者
そうではありません。
> /etc/httpd/conf.d/の配下に > > joomla.conf が存在し > > Alias /joomla /var/www/joomla > <Directory /var/www/joomla> > AllowOverride All > </Directory>