cgi-bin以下でイメージファイルやテキストファイルを開くには

cgi-bin以下でイメージファイルやテキストファイルを開くには

ソースからではなく、最初からapacheが入っている場合で書きますが、
cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.YYMMDD
とバックアップを取っておいてから
vi /etc/httpd/conf/httpd.conf

<Directory “/var/www/cgi-bin”>
Options ExecCGI
AllowOverride None
Allow from from all
Order allow,deny
AddHandler image/gif .gif <==追加
AddHandler image/jpeg .jpeg .jpg .jpe <==追加
AddHandler image/png .png <==追加
AddHandler text/html .js .css <==追加
</Directory>
とすることで、cgi-bin以下で画像ファイルと外部指定の
JavaScript、StyleSheetが
開けるようになります。
ただしセキュリティには十分注意してください。

Leave a Reply

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>