File .htaccess su Register.it

August 10th, 2009

Capita sempre più spesso di utlizzare la tecnica denominata URL Rewriting che permette la riscrittura di URL ‘SEO friendly’. Affinchè questa tecnica possa funzionare, come ben sappiamo, è necessario che nella root del nostro sito sia presente il file .htaccess.
Recentemente ho avuto modo di lavorare per un cliente il cui sito era ospitato su un server di register.it; con grande sorpresa ho scoperto però che non è sufficiente caricare via FTP il file in questione perchè l’URL Rewriting abbia effetto.
Di seguito vi illustro la procedura che mi è sembrata più corretta.
Read the rest of this entry »

I’d like to share some useful php snippets I often use while developing my websites. I just save them in my snippet folder in Dreamweaver.

  1. Quick variable retrieving (string):
    $page= $_GET["page"];
      if (!$page)   $page = "page name here";
  2. Read the rest of this entry »