View RSS Feed

KURTZ

  1. robots.txt

    by , 07-25-2010 at 04:32 PM
    Quote Originally Posted by KURTZ View Post
    thanks Brian just tested this:

    Code:
    # Allow Archive.org to save snapshots of everything
    User-agent: ia_archiver
    Allow: /
    
    # Tame yahoo... it tends to eat a ton of resources without a delay
    User-agent: Slurp
    Crawl-delay: 60
    
    
    #list individual pages and files here that all bots should ignore, as well as group extentions.
    #If you re-write everything to .html, you can disallow *.php, but note that if you don't have a CRR
    ...
    Categories
    SEO Tips
  2. vB Calendar CRR

    by , 07-21-2010 at 06:50 AM
    Quote Originally Posted by KURTZ View Post
    Code:
    // Calendar
    'calendar\.php$' => 'calendar/'
    '^calendar\.php\?c=1$' => 'calendar/'
    '^calendar\.php\?(c=1&)?do=(display.+?)(&year=)?$' => 'calendar/$2/[NF]'
    'calendar\.php\?(c=1&)?nojs=1' => 'calendar/nojs/[NF]'
    'calendar\.php\?(c=1&)?do=(display.+?)&nojs=1' => 'calendar/$2/nojs/[NF]'
    'calendar\.php\?(c=1&)?week=(\d+)&nojs=1' => 'calendar/week-$2/nojs/[NF]'
    'calendar\.php\?(c=1&)?month=(\d+)&year=(\d+)&nojs=1'
    ...
    Categories
    SEO Tips , CRR