AN HTTP Server の環境で XAMPP Apache を動かす
httpd142p 以下の環境を XAMPP の Apche で使用可能にします
C:\pleiades\xampp\php\php.ini
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
httpd.conf
AN HTTP Server は c:\httpd142p に展開されているので、そこをドキュメントルートに設定します
DocumentRoot "/httpd142p"
<Directory "/httpd142p">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks Includes ExecCGI
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Require all granted
</Directory>
httpd-xampp.conf
g19 は さくらインターネットの www の下に作成したフォルダです( さくらサーバの環境を Windows でテストします )
Alias /g19 "/httpd142p/g19"
<Directory "/httpd142p/g19">
Options +Indexes
AllowOverride All
Require all granted
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</Directory>