twitter
    Find out what I'm doing, Follow Me :)

Friday, July 27, 2012

Books I will read in next 30 Days!


Ageless Body Timelessmind Deepak Chopra Rs 715
In Search of Excellence Thomas J Rs. 595
Fish Harry Paul  Rs. 120
Power Shift Alvin Toffler Rs. 315
The Naked Ape Desmond Morris Rs. 306
The 7 Habits of Highly Effective People Stephen R Rs. 1122
Small is  Beautiful E.F.Schumacher Rs. 602
I 'M ok -You' Re OK Thomas J Not available (Author is different)
The One Minute Manger Ken Blanchard Rs. 120
People Watching Desmond Morris Rs. 422
The third Wave Alvin Toffler Rs. 291
The god of Small Things Arundhati Roy Rs. 188
A Briefer History Of Time Stephen R Rs. 411
Future Shock Alvin Toffler Rs. 252
The Discovery of India Jawaharlal Nehru Rs. 359
Execution Larry Bossidy Rs. 615
Iacocca Lee Iacocca Rs. 252
Snap shots from hell Peter Robinson Rs. 360
You Can Win Shiv Khera Rs. 266
The 33 Strategles of War Robert Greene Rs. 321
My  Years with general moters Alfred P Rs. 824

Wednesday, July 11, 2012

How to do the 301 Redirect?

1.create a .htaccess file, open notepad, name and save
the file as .htaccess (there is no extension).

2. If you already have a .htaccess file on your server,
download it to your desktop for editing.

3. Place this code in your .htaccess file:

redirect 301 /old/old.htm http://www.you.com/new.htm

4. If the .htaccess file already has lines of code in it,
skip a line, then add the above code.

5. Save the .htaccess file

6. Upload this file to the root folder of your server.

7. Test it by typing in the old address to the page you've
changed. You should be immediately taken to the new
location.

what is the code to resolve canonical issue/ www issue?

 This is the code to resolve canonical/ non www issue.

Options +FollowSymlinks

RewriteEngine on

rewritecond %{http_host} ^abc.com[nc]

rewriterule ^(.*)$ http://www.abc.com/$1 [r=301,nc]