eUttaranchal

Re-Writing the Web

Archive for May, 2007

Hello Web!

Posted by Bhupendra On May - 18 - 2007

Welcome to BhupendraKunwar.com – a meeting place for web freaks.

The objective of this website would be to encourage the web users- novice web users, web developers, web researchers , web traffickers, web promoters and web masters to contribute some meaningful substance to the web.

Popularity: 12% [?]

htaccess cheat sheet

Posted by Bhupendra On May - 3 - 2007

1. Rewrite All URLs on one domain to new domain

Put the following code in the .htaccess file of your old domain

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]

2. Rewrite non-www urls with www

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

Popularity: 12% [?]