-
ABOUT BHUPENDRA KUNWAR
Bhupendra is an Internet Marketer, Web Developer and a budding Social Enterpreneur. He is also the founder of eUttaranchal.com & Co-Founder DeeBee Web Services...>> -
Latest Articles
- WordPress Pagination Not Working: Solution
- Creating a Custom Post Type in WordPress
- FaceBook – Add custom thumbnail and title when someone likes your Website
- Godaddy Dedicated/ VDS Hosting – Login as Root
- Linux : Copy files directly between two remote servers
- Show Post Comments on the Homepage Twenty Ten
- WordPress – Using Shortcodes in Template files
- How to import a compressed mysql file .sql.gz using linux shell?
- Running WordPress Queries in Non-WordPress Pages
- Canonical URL solution – redirect non-www to www and index.php to your homepage
Browse by Category
Category Archives: URL Rewriting
Canonical URL solution – redirect non-www to www and index.php to your homepage
Canonical URL issue has always been a headache to the Webmasters and SEOs. But thanks to apache’s mod_rewrite which provide nice escapes for this problem 1. Rewrite all your urls WITHOUT www to WITH www Options +FollowSymLinks RewriteEngine on RewriteCond … Continue reading
Posted in SEO, URL Rewriting, Webmaster Issues
1 Comment
URL Rewriting with .htaccess
A quick guide to URL Rewriting #Start URL Rewriting Options +FollowSymLinks RewriteEngine on #This will rewrite all non-www urls with www # ie http://example.com will be rewritten as http://www.example.com RewriteCond %{HTTP_HOST} ^example.com RewriteRule (.*) http://www.example.com/$1 [R=301,L] #This statement ReDirects all … Continue reading
htaccess cheat sheet
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 … Continue reading


