Tilak Bisht

SEO Consultant & WordPress Web Designer

301 Redirecting From /default.aspx To The Site Root on IIS

July 21, 2010 By Tilak

Mostly websites are configured to serve the same content for www.domain.com; domain.com and www.domain.com/default.aspx (or index.html, index.asp, index.aspx). All three URLs will reach to same page of content. It could hurt your ranking in Google and other search engines because they will be indexed as three separate Urls. Google calls this process to “canonicalization”.

You may check out (using the Google Toolbar) the PageRank (PR) for www.domain.com, domain.com and www.domain.com/default.aspx – you will not get the same PR of all three URLs.

For resolve this issue you have to implement a 301 redirect from non-www version to www version or vice versa. For Apache server you can do 301 redirect via .htaccess easily and for IIS server you do also 301 redirect via web.config as well.

How to resolve default.aspx redirect problem?

1- always use http://www.domain.com instead of www.domain.com/default.aspx anywhere in your site, whether you are using absolute or relative links.

2- Put the javascript based redirect on your default.aspx page. This script will automaticall redirect to root folder of the site. Below is the simple javascript, which you put in your /default.aspx page:

<script type=”text/javascript”><!–
var u = ‘http://www.domain.com/’;
if (self.parent.frames.length != 0) self.parent.location=u;
if (self.location != u) self.location=u;
//–></script>

Technically search engines robots don’t process a client-based redirect, but if the /default.aspx URL never show in the address bar, then it should never get bookmarked or linked by anyone else.

 

UPDATE (8th September 2010):
My colleague (Mr. Anoop) has also sent me another java script which also redirect default.aspx to root and it is working fine.

<script type=”text/javascript”>
var url=location.href;
if (url.toLowerCase().match(“default.aspx”)) {
location.href = url.toLowerCase().replace(“default.aspx”, “”);
}
</script>

Filed Under: Marketing

Long Tail Keywords Importance

April 12, 2010 By Tilak

Long tail keywords may sound a bit reptilian, but they are important in generating targeted visitors to your website.

A long term keyword is just another name for a keyword phrase consisting of three or more words, that collectively are much more specific than a single keyword.  And generally speaking these long tail keyword are searched for less frequently that single word keywords.

Let’s use a regular main street type store to illustrate how long tail keywords work.

Suppose that you had a motorcycle repair shop that only worked on Harley Davidson  motorcycles.  Would your sign out front only say ‘˜Motorcycles’ or ‘˜Motorcycle Repairs’?  You might get more traffic walking in the door, but a lot of it would be for other brands of motorcycles.  Do you care about them?  Wouldn’t that waste some of your time dealing with them?

Wouldn’t it be better to be more specific with your signage?  Sure, your in the door traffic would be less, but you would also know that they’d be much more likely to be interested in exactly what you had to offer.

Think of your keywords as your signage

Now suppose also that you have a  website for your shop.  This website advertises your sales and specials, offers coupons, and lets people know what’s in stock.  Now based on our store front example which keywords would you rather use to get targeted visitors to your site, ‘˜motorcycle repairs’ or ‘˜Harley Davidson motorcycle repairs’?

That’s the advantage of using long tail keywords.  You get more targeted traffic.  And studies have shown that this targeted traffic is closer to buying than untargeted traffic.

People these days are getting more search engine savvy.  They know that if they want to find a specific thing, or a specific bit of information on the internet, they need to search more specifically.  And they can do that by using a multi-word phrase as a search term, and putting it in quotes.  This tells the search engine to look for that exact phrase.

Remember that a search term, and a keyword are just two different names for the same thing, used two different ways.  Some one searches using search terms.  A website owner attracts people using keywords that match up with the search terms.

Now the general objective in selecting and using keywords is to match up your keywords to what people are searching for.  So if you want to attract people looking for your specific products or information, then you need to use more specific keywords.  If searchers are searching specifically, then you want to be found specifically.  And to do this you need to use long tail keywords.

Remember that search engines are like giant cyber matchmakers.  They want to satisfy the people searching, with relevant results.  They want to match up searchers with providers, using search terms and keywords.  And if you’re a provider, then you want to make it easy for the search engines to match up your products or information, with the searchers who are looking for it.

Using long tail keywords gives you the specificity to attract the exact kind of people you want to your website.  People looking for exactly what you have to offer.  Using the correct keywords can be like a traffic magnet.  Attracting more and more people looking for what you have to offer, right to your cyber doorstep, your website.

Filed Under: Marketing

Search Engine Marketing Intro

September 12, 2007 By Tilak

Danny Sullivan has given very well introduction in Search Engine Strategies 2007 San Jose. Barry Schwartz has written about Danny’s presentation of Search Engine Marketing.

According to Danny page content is crucial, title is important and link analysis plays an important role in ranking in search engines.

He also suggest not to use frames and flash.

Filed Under: Marketing

© 2025 Tilak Bisht. All Right Reserved.