RewriteOptions inherit
# ----------------------------------------------------------------------
# Better website experience for IE users
# ----------------------------------------------------------------------

# Force the latest IE version, in various cases when it may fall back to IE7 mode
#  github.com/rails/rails/commit/123eb25#commitcomment-118920
# Use ChromeFrame if it's installed for a better experience for the poor IE folk

<IfModule mod_headers.c>
  Header set X-UA-Compatible "IE=Edge,chrome=1"
  # mod_headers can't match by content-type, but we don't want to send this header on *everything*...
  <FilesMatch "\.(appcache|crx|css|eot|gif|htc|ico|jpe?g|js|m4a|m4v|manifest|mp4|oex|oga|ogg|ogv|otf|pdf|png|safariextz|svg|svgz|ttf|vcf|webm|webp|woff|xml|xpi)$">
    Header unset X-UA-Compatible
  </FilesMatch>
</IfModule>

# ----------------------------------------------------------------------
# Cross-domain AJAX requests
# ----------------------------------------------------------------------

# Serve cross-domain Ajax requests, disabled by default.
# enable-cors.org
# code.google.com/p/html5security/wiki/CrossOriginRequestSecurity

#  <IfModule mod_headers.c>
#    Header set Access-Control-Allow-Origin "*"
#  </IfModule>

# ----------------------------------------------------------------------
# CORS-enabled images (@crossorigin)
# ----------------------------------------------------------------------

# Send CORS headers if browsers request them; enabled by default for images.
# developer.mozilla.org/en/CORS_Enabled_Image
# blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
# hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
# wiki.mozilla.org/Security/Reviews/crossoriginAttribute

<IfModule mod_setenvif.c>
  <IfModule mod_headers.c>
    # mod_headers, y u no match by Content-Type?!
    <FilesMatch "\.(gif|ico|jpe?g|png|svg|svgz|webp)$">
      SetEnvIf Origin ":" IS_CORS
      Header set Access-Control-Allow-Origin "*" env=IS_CORS
    </FilesMatch>
  </IfModule>
</IfModule>

# ----------------------------------------------------------------------
# Webfont access
# ----------------------------------------------------------------------

# Allow access from all domains for webfonts.
# Alternatively you could only whitelist your
# subdomains like "subdomain.example.com".

<IfModule mod_headers.c>
  <FilesMatch "\.(eot|font.css|otf|ttc|ttf|woff)$">
    Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
</IfModule>

# ----------------------------------------------------------------------
# Proper MIME type for all files
# ----------------------------------------------------------------------

# JavaScript
#   Normalize to standard type (it's sniffed in IE anyways)
#   tools.ietf.org/html/rfc4329#section-7.2
AddType application/javascript         js jsonp
AddType application/json               json

# Audio
AddType audio/mp4                      m4a f4a f4b
AddType audio/ogg                      oga ogg

# Video
AddType video/mp4                      mp4 m4v f4v f4p
AddType video/ogg                      ogv
AddType video/webm                     webm
AddType video/x-flv                    flv

# SVG
#   Required for svg webfonts on iPad
#   twitter.com/FontSquirrel/status/14855840545
AddType     image/svg+xml              svg svgz
AddEncoding gzip                       svgz

# Webfonts
AddType application/vnd.ms-fontobject  eot
AddType application/x-font-ttf         ttf ttc
AddType application/x-font-woff        woff
AddType font/opentype                  otf

# Assorted types
AddType application/octet-stream            safariextz
AddType application/x-chrome-extension      crx
AddType application/x-opera-extension       oex
AddType application/x-shockwave-flash       swf
AddType application/x-web-app-manifest+json webapp
AddType application/x-xpinstall             xpi
AddType application/xml                     rss atom xml rdf
AddType image/webp                          webp
AddType image/x-icon                        ico
AddType text/cache-manifest                 appcache manifest
AddType text/vtt                            vtt
AddType text/x-component                    htc
AddType text/x-vcard                        vcf

# ----------------------------------------------------------------------
# Gzip compression
# ----------------------------------------------------------------------

<IfModule mod_deflate.c>

  # Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/
  <IfModule mod_setenvif.c>
    <IfModule mod_headers.c>
      SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
      RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
    </IfModule>
  </IfModule>

  # Compress all output labeled with one of the following MIME-types
  # (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
  # and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines as
  # `AddOutputFilterByType` is still in the core directives)
  <IfModule mod_filter.c>
    AddOutputFilterByType DEFLATE application/atom+xml \
                                  application/javascript \
                                  application/json \
                                  application/rss+xml \
                                  application/vnd.ms-fontobject \
                                  application/x-font-ttf \
                                  application/xhtml+xml \
                                  application/xml \
                                  font/opentype \
                                  image/svg+xml \
                                  image/x-icon \
                                  text/css \
                                  text/html \
                                  text/plain \
                                  text/x-component \
                                  text/xml
  </IfModule>

</IfModule>

# ----------------------------------------------------------------------
# Expires headers (for better cache control)
# ----------------------------------------------------------------------

# These are pretty far-future expires headers.
# They assume you control versioning with filename-based cache busting
# Additionally, consider that outdated proxies may miscache
#   www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/

# If you don't use filenames to version, lower the CSS and JS to something like
# "access plus 1 week".

<IfModule mod_expires.c>
  ExpiresActive on

# Perhaps better to whitelist expires rules? Perhaps.
  ExpiresDefault                          "access plus 1 month"

# cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5)
  ExpiresByType text/cache-manifest       "access plus 0 seconds"

# Your document html
  ExpiresByType text/html                 "access plus 0 seconds"

# Data
  ExpiresByType application/json          "access plus 0 seconds"
  ExpiresByType application/xml           "access plus 0 seconds"
  ExpiresByType text/xml                  "access plus 0 seconds"

# Feed
  ExpiresByType application/atom+xml      "access plus 1 hour"
  ExpiresByType application/rss+xml       "access plus 1 hour"

# Favicon (cannot be renamed)
  ExpiresByType image/x-icon              "access plus 1 week"

# Media: images, video, audio
  ExpiresByType audio/ogg                 "access plus 1 month"
  ExpiresByType image/gif                 "access plus 1 month"
  ExpiresByType image/jpeg                "access plus 1 month"
  ExpiresByType image/png                 "access plus 1 month"
  ExpiresByType video/mp4                 "access plus 1 month"
  ExpiresByType video/ogg                 "access plus 1 month"
  ExpiresByType video/webm                "access plus 1 month"

# HTC files  (css3pie)
  ExpiresByType text/x-component          "access plus 1 month"

# Webfonts
  ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
  ExpiresByType application/x-font-ttf    "access plus 1 month"
  ExpiresByType application/x-font-woff   "access plus 1 month"
  ExpiresByType font/opentype             "access plus 1 month"
  ExpiresByType image/svg+xml             "access plus 1 month"

# CSS and JavaScript
  ExpiresByType application/javascript    "access plus 1 year"
  ExpiresByType text/css                  "access plus 1 year"

</IfModule>

# ----------------------------------------------------------------------
# Prevent mobile network providers from modifying your site
# ----------------------------------------------------------------------

# The following header prevents modification of your code over 3G on some
# European providers.
# This is the official 'bypass' suggested by O2 in the UK.

# <IfModule mod_headers.c>
# Header set Cache-Control "no-transform"
# </IfModule>

Options +FollowSymLinks
RewriteEngine On
#RewriteCond %{HTTP:X-Forwarded-Proto} =http
#RewriteRule .* http://%{HTTP:Host}%{REQUEST_URI} [L,R=permanent]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_URI} !(/$|\.)
RewriteRule (.*) %{REQUEST_URI}/ [R=301,L]

ErrorDocument 404 "<H1>Page not found</H1>"

#sitemap php
RewriteRule (.*)\.xml(.*) $1.php$2 [nocase]

#code to redirect index to index.php
#RewriteRule ^$ index.php

#Module Rewrite URL

#code to redirect activate.php to activate/
RewriteRule ^activate/$ activate.php

#code to redirect forget.php to forget-password/
RewriteRule ^forget-password/$ forget.php

#code to redirect reset-password.php to reset-password/
RewriteRule ^reset-password/$ reset-password.php

#code to redirect module/po/index.php to module/po/
RewriteRule ^module/po/$ module/po/index.php
RewriteRule ^module/po/(open|progress|prepared|complete|cancel)/$ module/po/index.php?status=$1
RewriteRule ^module/po/create/$ module/po/create.php
RewriteRule ^module/po/create/save/$ module/po/create.php?action=save
RewriteRule ^module/po/detail/$ module/po/detail.php
RewriteRule ^module/po/detail/(.*)/$ module/po/detail.php?po=$1
RewriteRule ^module/po/activity/$ module/po/activity.php
RewriteRule ^module/po/activity/(.*)/$ module/po/activity.php?po=$1
RewriteRule ^module/po/edit/$ module/po/edit.php
RewriteRule ^module/po/edit/update/$ module/po/edit.php?action=update
RewriteRule ^module/po/edit/(.*)/$ module/po/edit.php?po=$1
RewriteRule ^module/po/document/$ module/po/document.php
RewriteRule ^module/po/document/add/$ module/po/document.php?action=add
RewriteRule ^module/po/document/(.*)/$ module/po/document.php?po=$1
RewriteRule ^module/po/export/$ module/po/export.php

#code to redirect module/admin/index.php to module/admin/
RewriteRule ^module/admin/$ module/admin/index.php
RewriteRule ^module/admin/insert/$ module/admin/insert.php
RewriteRule ^module/admin/detail/(.*)/$ module/admin/edit.php?id=$1

#code to redirect module/role/index.php to module/role/
RewriteRule ^module/role/$ module/role/index.php
RewriteRule ^module/role/insert/$ module/role/insert.php
RewriteRule ^module/role/detail/(.*)/$ module/role/edit.php?id=$1

#code to redirect module/access/index.php to module/access/
RewriteRule ^module/access/$ module/access/index.php
RewriteRule ^module/access/insert/$ module/access/insert.php
RewriteRule ^module/access/detail/(.*)/$ module/access/edit.php?id=$1

#code to redirect module/report/index.php to module/report/
RewriteRule ^module/report/$ module/report/index.php
RewriteRule ^module/report/(.*)/(.*)/([0-9]+)/$ module/report/index.php?csdate=$1&cedate=$2&region=$3
RewriteRule ^module/report/(.*)/(.*)/([0-9]+)/(.*)/$ module/report/index.php?csdate=$1&cedate=$2&region=$3&cstatus=$4

#code to redirect module/client/index.php to module/client/
RewriteRule ^module/client/$ module/client/index.php
RewriteRule ^module/client/insert/$ module/client/insert.php
RewriteRule ^module/client/detail/(.*)/$ module/client/edit.php?id=$1

#code to redirect module/unit/index.php to module/unit/
RewriteRule ^module/unit/$ module/unit/index.php
RewriteRule ^module/unit/insert/$ module/unit/insert.php
RewriteRule ^module/unit/detail/(.*)/$ module/unit/edit.php?id=$1

#code to redirect module/region/index.php to module/region/
RewriteRule ^module/region/$ module/region/index.php
RewriteRule ^module/region/insert/$ module/region/insert.php
RewriteRule ^module/region/detail/(.*)/$ module/region/edit.php?id=$1

#code to redirect module/ppn/index.php to module/ppn/
RewriteRule ^module/ppn/$ module/ppn/index.php
RewriteRule ^module/ppn/insert/$ module/ppn/insert.php
RewriteRule ^module/ppn/detail/(.*)/$ module/ppn/edit.php?id=$1

# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php72” package as the default “PHP” programming language.
<IfModule mime_module>
  AddHandler application/x-httpd-ea-php72___lsphp .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
