... showing all entries tagged cheat sheet
Here you will find all posts tagged cheat sheet ↓
h4x3d.com does not host any illegal content. Links/Files referred to are for educational purposes only.
Overview of different Typefaces and Fonts
Dated: March 14th, 2009 Shown above ↑ is only an excerpt: read more
.htaccess cheat sheet
Dated: September 12th, 2005
Tags: cheat sheet, code, htaccess, modrewrite
Oldskool, code | No Comments »
Here is a simple cheatsheet for the .htaccess file:
Enable Directory Browsing
Options +Indexes
## block a few types of files from showing
IndexIgnore *.wmv *.mp4 *.aviDisable Directory Browsing
Options All -IndexesCustomize Error Messages
ErrorDocument 403 /forbidden.html
ErrorDocument 404 /notfound.html
ErrorDocument 500 /servererror.htmlGet SSI working with HTML/SHTML
AddType text/html .html
AddType text/html .shtml
AddHandler server-parsed .html
AddHandler server-parsed .shtml
# AddHandler server-parsed .htmChange Default Page (order is followed!)
DirectoryIndex [...]

