... showing all entries tagged cheat sheet
Below 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
March 14th, 2009 by jezTable and Preview of Typefaces
via lifehacker
If you enjoyed this post, make sure you subscribe to my RSS feed!
.htaccess cheat sheet
September 12th, 2005 by jezTags: cheat sheet, code, htaccess, modrewrite
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 [...]



