Gleek/data-hack/master/.htaccess - Htaccess File

Gleek/data-hack/master/.htaccess

# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_URI} !^(css|javascript|images|kookoo)

RewriteRule ^([a-zA-Z0-9]+)$ index.php?pid=$1
RewriteRule ^([a-zA-Z0-9]+)/$ index.php?pid=$1
RewriteRule ^([a-zA-Z0-9]+)/([a-zA-Z0-9]+)/([a-zA-Z0-9s]+) index.php?pid=$1&$2=$3
RewriteRule ^([a-zA-Z0-9]+)/([a-zA-Z0-9]+)/([a-zA-Z0-9s]+)/ index.php?pid=$1&$2=$3

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>

On Github License

Files

Download PDF of Htaccess file
GET, POST, PUT, REQUEST_FILENAME, REQUEST_URI

Comments

Apache