Download it for MAC

Downaload it for Win

jtnimoy: The Work of Josh Nimoy.

Read More

 

jtnimoy: The Work of Josh Nimoy.

Read More

Plexus.

Read More

Фотограф Александр Тихомиров | FreeYork.

 

Read More

Read More

Dribbble – Alternative Facebook Ui Free PSD by Artur Kasimov.

 

Read More

# robots.txt generated at http://www.mcanerin.com

User-agent: *

Disallow:

Disallow: /cgi-bin/

Disallow: /test

 

viaRobots.txt Generator – McAnerin International Inc..

 

 

Read More

 

 

If you’re new to htaccess, here’s a quick introduction. Otherwise, here are 5 sets of htaccess directives every webmaster should know:

1 – Redirect Visitors While You Update Your Site

Update and test your site while visitors are redirected to the page of your choice:

order deny,allow

deny from all

allow from 123.123.123.123

ErrorDocument 403 /page.html

<Files page.html>

allow from all

</Files>

Replace 123.123.123.123 with your IP address. Also replace page.html with the name of the page you want visitors to see.

2 – Display a Custom 404 Error Page

Your server displays a “404 File Not Found” error page whenever a visitor tries to access a page on your site that doesn’t exist.

You can replace the server’s default error page with one of your own that explains the error in plain language and links visitors to your home page. Here’s how to use your own page:

ErrorDocument 404 /404.html

Replace 404.html with the name of the page you want visitors to see.

3 – Handle Moved or Renamed Pages

You’ve moved or renamed a page on your site and you want visitors automatically sent to the new page when they try to access the old one. Use a 301 redirect:

Redirect 301 /old.html http://yoursite.com/new.html

Using a 301 redirect also ensures the page doesn’t lose its search engine ranking.

4 – Prevent Directory Browsing

When there’s no index page in a directory, visitors can look and see what’s inside. Some servers are configured to prevent directory browsing like this. If yours isn’t, here’s how to set it up:

Options All -Indexes

5 – Create User Friendly URLs

Which of the two URLs below looks friendlier?

http://yoursite.com/about

http://yoursite.com/pages/about.html

When it comes to URLs, as long as the meaning is clear, shorter is always better.

With htaccess and an Apache module called mod_rewrite, you can set up URLs however you want. Your server can show the contents of “/pages/about.html” whenever anyone visits “http://yoursite.com/about”. Here are a few examples:

Attention! on my host aruba.it you have to set not same name ex. about -> /pages/about_1.php

RewriteEngine on
RewriteRule ^about/$ /pages/about.html [L]
RewriteRule ^features/$ /features.php [L]
RewriteRule ^buy/$ /buy.html [L]
RewriteRule ^contact/$ /pages/contact.htm [L]

Additional Resources

There’s a lot more to mod_rewrite and htaccess. Check out the links below for more details and tricks.

Apache htaccess Ultimate Guide

Comprehensive guide to .htaccess

mod_rewrite, a beginner’s guide (with examples)

Stupid htaccess Tricks

via5 htaccess Tricks Every Webmaster Should Know.

Read More

GoSocial: a free social media icon pack — GoSquared – Blog.Preview of the GoSocial icons

Read More

Le informazioni che dovete avere sono l’indirizzo ip del server dove risiede il dominio es. 123.456.789.357 e il nome a dominio es. sitoweb.itPER MAC “snow leopard”:

1 aprite il “Terminale” da Applicazioni > Utility

2 digitate: cd /private/etc/

3 sempre nel Terminale digitate: sudo pico hosts

4 inserite la vostra password mac

5 avrete più o meno questa schermata:

6 muovendovi con i tasti direzionali, andate sotto l’ultima riga

7 inserite l’indirizzo ip del vostro dominio e il nome a dominio quelli non ancora propagati

8 digitare control+O  e successivamente premete invio, per salvare la nuova configurazione

9 ora control+X per uscire definitivamente.

via Modificare il file hosts sul Mac utente esperto « Carlo Caforio – Web Master Web Developer -.

Read More