Supermighty/Zendo/master/.htaccess - Htaccess File

Supermighty/Zendo/master/.htaccess

# 
# AuthType Basic
# AuthName "What is the colour of hell?"
# AuthUserFile /home/passwd
# Require user ukiah
# 

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /zendo

RewriteCond %{REQUEST_URI} /$
RewriteRule (.*)/$ $1 [NC,L,R=301]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /zendo/index.php [L]
</IfModule>

## make sure nobody gets the htaccess files
<Files ~ "^[._]ht">
    Order allow,deny
    Deny from all
    Satisfy All
</Files>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache