Archive for July, 2011

Creating SEO friendly URL

Wednesday, July 13th, 2011

If you want to avoid the unwanted file extension to achieve SEO friendly URL use the following code snippet.

# Simple Mod Rewrite for clean url
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Godaddy glitches ;) 
This above mentioned code works in other servers but for godaddy
just add the following code before mod re-write.
#Fix Rewrite
Options -Multiviews
Best of luck :) 
- Jay

Android sdk installation problem

Sunday, July 3rd, 2011

During android sdk installation (.exe) at windows, you will find android SDK setup refuses to proceed, because it doesn’t find the JDK installation even if the computer has JDK installed.

Here is an easy trick. Press the Back button on the SDK error screen that tells you that the EXE couldn’t detect the JDK. Then press Next. It will just install the sdk easily. Who knows this will happen? Funny !!

- Jay