#
# Copyright (c) 2016 Tama Communications Corporation
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# .htaccess for apache.
# This file was generated by htags(1).
#
# Htags was invoked with the -f, or -D option.
# You should start http server so that HTML/cgi-bin/*.cgi is executed
# as a CGI script.
#
# (1) Basic
#
Options +ExecCGI
<FilesMatch "^(global|completion)\.cgi$">
    SetHandler cgi-script
</FilesMatch>
#
# (2) Compression
#
# If you have a browser which accepts gzip encoding, you can compress
# HTML files like follows:
#
# $ htags
# $ find HTML -name "*.html" -not -name 'index.html' -print | xargs gzip
#
#<FilesMatch "\.html.gz$">
#    AddEncoding x-gzip .gz
#    ForceType text/html
#</FilesMatch>
#RewriteEngine on
#RewriteCond %{HTTP:Accept-Encoding} gzip
#RewriteCond %{REQUEST_FILENAME} !\.gz$
#RewriteCond %{REQUEST_FILENAME}\.gz -s
#RewriteRule .+ %{REQUEST_URI}.gz
