Skip to content

Instantly share code, notes, and snippets.

@AliMD
Created October 1, 2012 11:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AliMD/3811059 to your computer and use it in GitHub Desktop.
Save AliMD/3811059 to your computer and use it in GitHub Desktop.
CIW Last sessions

CIW Des Idea for last sessions

  • Google Map
  • Base64
  • Custome Animations
  • SVG
  • Canvas
  • Adobe CS Pack
  • photoshop save4web
  • sizes
  • photoshop actions
  • Bridge
  • Flash
  • PHP Intro
  • UnderDev
  • favicon
  • .com domain
  • Rubic

CIW Pro Idea for last sessions

  • htacces
  • Sham :(
  • ajax $('div.content').load('home.php');
  • underdev
  • robot.txt, sutemap, analytics
  • db view
  • db insert
  • db search query
@AliMD
Copy link
Author

AliMD commented Oct 6, 2012

Redirect all url (without type) to .php

** => .php

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f [OR]
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^([A-z0-9/_+-]+)$ /$1.php [L]
</IfModule>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment