Innovation Simple

Posts Comments



Category: Web Development

Web development is an art in building modules, templates, and tools for websites and databasing. Learn tips and tricks in programming.

Code Redirects

10 July, 2008 (09:33) | Web Development

HTML Single File Redirect
Redirect 301 /olddirectory/oldfile.html http://yoursite.com/newdirectory/newfile.html

Directory Redirect in Apache
RewriteEngine On
RewriteRule ^olddir/(.*)$ http://domain.com/newdir/$1 [R=301,L]

OR

Redirect 301 /olddirectory http://yoursite.com/newdirectory/
Read more »

Robot File Help

10 July, 2008 (09:33) | Web Development

To block ALL bots from crawling all pages under a directory use the entry in your robots.txt file:

User-agent: *

Disallow: /private/

To block Google from crawling all pages under a directory use the entry in your robots.txt file:
Read more »

Web Languages

10 July, 2008 (09:32) | Web Development

CSS
Short for Cascading Style Sheets, a new feature being added to HTML that gives both Web site developers and users more control over how pages are displayed. With CSS, designers and users can create style sheets that define how different elements, such as headers and links, appear. These style sheets can then be applied to any Web page. The term cascading derives from the fact that multiple style sheets can be applied to the same Web page.

line Web Languages

HTML
Short for HyperText Markup Language, the authoring language used to create documents on the World Wide Web.

line Web Languages
Read more »