coolternet/CMS_dev/master/.htaccess - Htaccess File

coolternet/CMS_dev/master/.htaccess

Options -Indexes

<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteCond %{REQUEST_METHOD} !=POST
  RewriteCond %{QUERY_STRING} =""
  RewriteCond %{HTTP_COOKIE} !(evocms_[a-z0-9]+_login) [NC]
  RewriteCond %{DOCUMENT_ROOT}/cache/$0/index.html -f
  RewriteRule (.*) cache/$0/index.html [L]

  RewriteCond %{QUERY_STRING} !=""
  RewriteRule ^(/upload/.*)$ /index.php?p=$1 [QSA,L]

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ /index.php?p=$1 [QSA,L]
</IfModule>

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

On Github License

Files

Download PDF of Htaccess file
DOCUMENT_ROOT, HTTP_COOKIE, POST, QUERY_STRING, REQUEST_FILENAME, REQUEST_METHOD

Comments

Apache