10 USEFUL .htaccess Snippets
http://www.catswhocode.com/blog/10-useful-htaccess-snippets-to-have-in-your-toolboxMy fav: Remove file extensions from urls
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
# Replace html with your file extension, eg: php, htm, asp
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
# Replace html with your file extension, eg: php, htm, asp
New CSS 3 Selectors
http://perishablepress.com/awesome-new-css3-selectors/My fav: Reverse/Parent Selectors
a < img { border: none; }
Technorati tags:
code post |


0 comments:
Post a Comment