yaph/z3lstore/master/.htaccess - Htaccess File

yaph/z3lstore/master/.htaccess

<FilesMatch ".(htaccess|htpasswd|ini|phps|fla|psd|log|sh|cfg)$">
 Order Allow,Deny
 Deny from all
</FilesMatch>

<IfModule mod_fcgid.c>
  AddHandler fcgid-script .fcgi
  <Files ~ (.fcgi)>
    SetHandler fcgid-script
    Options +SymLinksIfOwnerMatch +ExecCGI
  </Files>
</IfModule>

<IfModule mod_rewrite.c>
  Options +SymLinksIfOwnerMatch
  RewriteEngine On
  RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
  RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
  RewriteBase /
  RewriteCond %{REQUEST_URI} !(app.fcgi)
  RewriteRule ^(.*)$ app.fcgi/$1 [L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_URI

Comments

Apache