notmaintained/pnd/master/glue/.htaccess - Htaccess File

notmaintained/pnd/master/glue/.htaccess

DirectoryIndex index.php

  # Deny directory listings
  Options -Indexes

  # Follow symbolic links
  Options +FollowSymLinks

  <IfModule mod_rewrite.c>

    <IfModule mod_env.c>
      SetEnv REWRITE_ENGINE On
    </IfModule>

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-s
    RewriteCond %{REQUEST_FILENAME} !-l

#######################################################################
#
# Change the path below to the location of your index.php
# file relative to your webservers DocumentRoot.
#
#######################################################################

    RewriteRule  ^(.*)$  index.php
  </IfModule>

  # Protect .htaccess
  <Files .htaccess>
    order deny,allow
    deny from all
  </Files>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache