URL Rewriting in ASP.NET

By Mohamed Yasil.M

Examines how to perform dynamic URL rewriting with Microsoft ASP.NET. URL rewriting is the process of intercepting an incoming Web request and automatically redirecting it to a different URL. Discusses the various techniques for implementing URL rewriting, and examines real-world scenarios of URL rewriting.

Take a moment to look at some of the URLs on your website. Do you find URLs like http://yoursite.com/info/dispEmployeeInfo.aspx?EmpID=459-099&type=summary? Or maybe you have a bunch of Web pages that were moved from one directory or website to another, resulting in broken links for visitors who have bookmarked the old URLs. In this article we’ll look at using URL rewriting to shorten those ugly URLs to meaningful, memorable ones, by replacing http://yoursite.com/info/dispEmployeeInfo.aspx?EmpID=459-099&type=summary with something like http://yoursite.com/people/sales/chuck.smith. We’ll also see how URL rewriting can be used to create an intelligent 404 error.

URL rewriting is the process of intercepting an incoming Web request and redirecting the request to a different resource. When performing URL rewriting, typically the URL being requested is checked and, based on its value, the request is redirected to a different URL. For example, in the case where a website restructuring caused all of the Web pages in the /people/ directory to be moved to a /info/employees/ directory, you would want to use URL rewriting to check if a Web request was intended for a file in the /people/ directory. If the request was for a file in the /people/ directory, you’d want to automatically redirect the request to the same file, but in the /info/employees/ directory instead.

Compare the following two addresses and decide which one you like more:

  • http://www.mysite.com/catogory/Posts.aspx?Year=2006&Month=12&Day=1
  • http://www. mysite.com/catogory/2006/12/10/

In large web applications, it is common for developers to move pages from one directory to another. Let us suppose that support information was initially available at http://www.somebloghost.com/Info/Copyright.aspx and http://www.somebloghost.com/Support/Contacts.aspx, but at a later date the developers moved the Copyright.aspx and Contacts.aspx pages to a new folder called Help. Users who have bookmarked the old URLs need to be redirected to the new location. This issue can be resolved by adding simple dummy pages containing calls to Response.Redirect(new location). However, what if there are hundreds of moved pages all over the application directory? The web project will soon contain too many useless pages that have the sole purpose of redirecting users to a new location.

ASP.NET 2.0 provides an out-of-the-box solution for mapping static URLs within a web application. ASP.NET 2.0 provides an out-of-the-box solution for mapping static URLs within a web application. It is possible to map old URLs to new ones in web.config without writing any lines of code. To use URL mapping, just create a new urlMappings section within the system.web section of your web.config file and add the required mappings (the path ~/ points to the root directory of the web application):

<urlMappings enabled=”true”>

<add url=”~/Info/Copyright.aspx” mappedUrl=”~/Help/Copyright.aspx” />

<add url=”~/Support/Contacts.aspx” mappedUrl=”~/Help/Contacts.aspx” />

</urlMappings>

Thus, if a user types http://www.somebloghost.com/Support/Contacts.aspx, he can then see the page located at http://www.somebloghost.com/Help/Contacts.aspx, without even knowing the page had been moved.

URL rewriting module

The best way to implement a URL rewriting solution is to create reusable and easily configurable modules, so the obvious decision is to create an HTTP Module (for details on HTTP Modules see MSDN Magazine) and implement it as an individual assembly. To make this assembly as easy to use as possible, we need to implement the ability to configure the rewrite engine and specify rules in a web.config file.

During the development process we need to be able to turn the rewriting module on or off (for example if you have a bug that is difficult to catch, and which may have been caused by incorrect rewriting rules). There should, therefore, be an option in the rewriting module configuration section in web.config to turn the module on or off. So, a sample configuration section within web.config can go like this:

<rewriteModule>

<rewriteOn>true</rewriteOn>

<rewriteRules>

<rule source=”(\d+)/(\d+)/(\d+)/”
destination=”Posts.aspx?Year=$1&amp;Month=$2&amp;Day=$3″/>

<rule source=”(.*)/Default.aspx”
destination=”Default.aspx?Folder=$1″/>

</rewriteRules>

</rewriteModule>

For More Info About Rewrite ASP.Net URL Visit: http://www.simple-talk.com/

Guidelines For Image Optimization

By Mohamed Yasil.M

Images are an important part of making your site visually attractive for your visitors. But, search engines do not understand the content of images on a web page. This is true even if the images have text in them. For example, your logo may have words in it but the search engines can not read these words because they are not standard text. They are a picture. That’s why Image Optimization becomes very important…

IMAGE OPTIMIZATION OFFERS THE FOLLOWING ADVANTAGES:

Free product promotion
More optimization opportunities than regular search alone
More exposure with Photo sharing sites and Social image sharing sites
Easy to compete as there is less competition in image search engines

IMAGE OPTIMIZATION TIPS

Put Emphasis on Originality of Images
Put Emphasis on Quality of Images
Image formatting: Image Slicing, Image cropping and Image Re-sizing
Image file naming: Make sure the Image file name or IMG SRC string contains your prime keyword
Avoid Usage of heavy images
Image Tagging:

SRC attribute specifying the URL of the image
Width is specified in pixels
Height specified in pixels
Alt attribute that describes the content of the image-this is one of the most important elements of image optimization
Title attribute that contains text to be displayed when the user hovers mouse over the image
End up with an XHTML image reference
Avoid query strings for IMG SRCs

Web page Usability: Web page Usability is very important in image search optimization. It will show up the images at the top of image search results and secondly it will force the end users to click on the link to the image and then take them to your web site. Writing alternative text that is keyword stuffed is not going to inspire people to click on the link in that image to your site.
Image Freshness. If we are targeting high competitive keywords then we should re-upload the pictures, since image freshness is a contextual clue for the search engines and will have good impact on keywords rankings in image search engines.
Optimize the page with the image. Images seem to be preferred more if they’re on a page that’s all about the keyword/subject. Optimizing the page where the image appears is as important as optimizing the image itself. Optimizing the actual page for contextual search improves graphic images search. Search engines also look at text surrounding a graphic image to determine relevancy. Text within the anchor tag and next to anchor text is especially going to influence image-search rankings.
File organization. We should create an image folder on our web server and that should be accessible to the search engines. We should not exclude graphic images directory from the robots. Also, we should not do “click to see larger image” inside of a JavaScript link. When we do this, we are limiting search engines’ access to that image file because search engines can not crawl java script links.
Target high audience base. There are different ways by which you can get people interested in your company and hence build up traffic and which leads to have better conversions. For example, hotels might show furniture & decorative art in addition to details on their rooms, and restaurants might show views or special event rooms.
Conduct searches in the image search engines to see how your pictures appear after they have been indexed with search engines. Thereafter you can review the changes and can make the required changes in the same.
At the end I would like to conclude that if you will be running your site for five to six months after implementing the above mentioned image optimization tips then you will surely see some pretty dramatic positive results in terms of traffic to your web site.

I am proactive in strategy planning for SEO, ORM, Brand Management. Handling team of SEO experts. My primary area of focuses are client relationship management, SEO training, implementation of new search engine marketing strategies, and researching day in and day out for SEO/PPC/SMO.

Article Source: EzineArticles.com

17 Google Updates We Ran Out of Time For

By Mohamed Yasil.M

This was one of those weeks where Google unleashed a google of updates. Try as we might, sometimes we just run out of time at the end of the week. So, occasionally, we have to compile a list of the leftovers at the end of the week. Here’s what we haven’t yet covered that you’ll still want to know:

Google Retail told us that consumers are increasingly shopping online on the weekends – yes, even during the holidays (avoiding the crowds?). They also unveiled hot holiday searches and Cyber Monday’s hot search trends.

Google’s Search Options panel on its main search got a new addition in “Translated search.” Now, you can search pages in a different language and have it translated into your own.

Google Dictionary ditched Answers.com for its own in-house product.

Google Maps now syncs your starred items with your mobile and desktop devices.

Google Earth and Maps got new imagery and Street View imagery.

Google Earth added six new cities to Building Maker and launched the Model Your Town competition.

YouTube unveiled “Feather” into its version of Labs – TestTube – as a way of watching videos without all that annoying buffering stopage. They also added 8 short films to the Screening Room.

Google Friend Connect added the ability to sign in with your Twitter account.

Google Finance is now streaming news.

Google Adsense expanded category filtering to include French, German, and Spanish ads. They’ve also created a Product Ideas page, which is open for the next two weeks for your suggestions.

Google Checkout launched a wizard feature to streamline the process of creating a store gadget.

Source URL : searchenginewatch

Breaking News – Google Algorithm Changes Ahead

By Mohamed Yasil.M

Over the summer, Google introduced the first of many subtle changes to its algorithm.  With these minor tweaks came a warning: more changes are yet to come. Below is a brief rundown of the latest changes to the algorithm, as well as some educated speculation on the adaptations to come.

Back to Basics with Backlinks

Google has seemingly reverted to its previous position on backlinks and placed a higher value on quantity over quality. Until recently, websites were rewarded for quality backlinks with relevancy. Now it appears that Google is promoting sites with large numbers of backlinks rather than concerning itself with the quality of those links. Seeing as this loophole will surely be exploited by many spam sites, leading to a decreased quality of results, more changes are sure to come.

Older Sites Have The Competitive Edge

The recent changes to Google’s algorithm place unprecedented emphasis on the age of a site. Google has always used its “sandbox” to ensure that sites aren’t in existence solely for rankings, but the new algorithm emphasizes age even more. The result of this shift is that older, less relevant sites are ranking highly while newer sites wither away with low page rank. It seems likely that this new weighting system is due for yet another shift in the near future.

PageRank May Be On Its Way Out The Door

Google appears to be depending less on the value of PageRank when determining the importance of a particular backlink.  In fact, signs indicate that PageRank may be replaced by a new system known as TrustRank in the future. The TrustRank system would indicate Google’s opinion of the veracity of a particular website, and have less of an impact on actual rankings than PR.

Article Source: EzineArticles.com

How the Google Pagerank Algorithm Works?

By Mohamed Yasil.M

Google pagerank is one of the most important factors used to rank websites in Google search engine. If you are going to use SEO strategy and build links to your website in order to improve your website position in Google you should understand how the Google pagerank algorithm works.

Every link from a website with some pagerank will pass on some percentage to the linked page. The percentage depends on the number of outgoing links. There is an easy formula to count the percentage: 100 / total number of outgoing links. E. g. if a page contains one link, this link will pass on 100% of the pagerank. If the page contains 100 outgoing links, every link will pass on 1% of the pagerank.

What does it mean for you and your link building strategy? If you do some link exchanges or buy links on related websites, try to get backlinks from pages with low number of links. Avoid linkfarms placing too many links on a single page because they will pass on very small percentage of their pagerank.

The more links from pages with high pagerank your website gets, the higher pagerank will have. It is sometimes better to get a link from high PR page with hundred of outgoing links rather than from low PR page with a few links. To determine the pagerank of any website on the internet, install Google toolbar to your browser. This tool displays values from zero to ten depending on the real pagerank.

Article Source: Ezine Article

On Page Optimization Strategy

By Mohamed Yasil

On page optimization really comes down to your keywords. The keyword is really what drives the search engine. Picking of the keyword is absolutely crucial. You need to get into the mind of your user and think, if I was a soccer fanatic, what would I be typing into the search engine to find whatever it is I want to serve up. Let’s say I want to serve up something about soccer drills because I’ve got a book I’m going to sell about soccer drills. On one page I’ve got here’s one free soccer drill and now that you’ve read this free soccer drill I want you to buy the book.

Let’s say I’m going to optimise this page for soccer drills. I’ve gone through the process of thinking, my book is about soccer drills and first thing you would do is some analysis. There are some different keyword research tools out there. One of the best ones to check out is you type into Google ‘free google keyword research tool’. You can put in a seed keyword. Google will then give a lot of other keywords that are related to this topic that we might look at optimising for at a later stage.

Our primary keyword, our seed keyword is soccer drills because we’ve got that soccer drills book. Soccer drills is what we were ranked, so we will put it into the title tag, that’s in your head tag information, in your html page then you would also put it into your meta description. You would also put it into your meta keywords, you might put it into your h1 tag (we’ll discuss this later). Then you want to sprinkle the keyword throughout the page. That’s really all on page optimisation is.

All you’re doing is having it so when that spider follows the link and goes soccer drills. When it gets to this website you want there to be a congruency between what Google thinks the page is going to be about and then what the page is about. This spider will make an analysis based on the title tag, meta description, keywords, h1 tag and a few times throughout the page. Google will come here and scan the website and will say, this page is about soccer drills. The link that links to the website said it was about soccer drills, I got here and it had soccer drills all over the page.

This leads to another important point. Whenever you are optimising for a web page, only optimise for one keyword. You don’t want to have too many keywords. We go to free google keyword tool and we put soccer drills in, and it might come up with other keywords. It’s ok to have ancillary keywords. Begin with soccer drill and you might have soccer drill training. The key is when you select you keywords you want to be selecting keywords that people are typing in. There is no point in optimising for a keyword that no one else is typing in.

People may say, I rank number one for mating habits of mosquitoes in Ethiopia. I could be number one for that very long phrase. If someone typed that in, I could put that into this page in the title tag, the description, the h1 tag, and put it throughout the page. I might come up number one, in fact there is a very good chance I could be number one for that, because no one else is going to optimise for that. Google’s trying to come up with the most relevant response for whatever someone types in. If I have a page that’s optimised for that, what are the chances of someone else optimising for that? Zero. But a number one listing for that means nothing, because who is going to be typing those keywords in? You should practice on page optimization for one keyword per page. On page optimization should be done for great keywords – with high search volumes and relevant to your content.

Article Source: Ezine-Article

Offpage Optimization Basics

By Mohamed Yasil.M

What is offpage optimization?

Well, they are techniques you can use to help improve your Search Engine rankings but is done off your site. Which means it is done on other sites and not your own. Onpage requires you to do optimization on your own webpages, offpage requires you to do it off-site.

Ok, what does it all mean?

With Google, offpage optimization has became more important as they place a lot of emphasis and relevance on links. The simple lowdown for offpage optimization is LINKS. LINKS from other websites to yours or BACKLINKs or INBOUND LINKs. Links with anchor text(keywords) from other websites to yours. And seriously, that’s about it – getting others to link to you with the proper anchor text. LINKs are also important because they provide a way for the search engines bots to find your site.

The more links you have pointing to your site, the more important the search engines rate your site. Anchor text provides a way to rate the keywords for your site. And more links with anchor text to your site, the more important the Search Engine rate your site for those keywords. It’s as simple as that.

If you properly plan your offpage optimization and what a bit of luck, you can rank better in the Search Engines.

Firstly, you have to pay attention to :

1. How many sites are linking to you. More the merrier.

2. What kind of sites are they and whether their topics are related to yours (titles, keywords and so on).

3. The Anchor text used.

4. Trustrank and Pagerank of the sites linking to you (whether they are trusted by Search Engines or have been blacklisted)

Anchor text is the hyperlink text. It is usually used to tell the reader the subject matter of the page that it links to. Like a link here -   rel=nofollow SEO Articles, you can see that the anchor text here is SEO Articles, pointing to   rel=nofollow http://www.seochat.com and this is like
telling the reader that the subject is SEO Articles and this site http://www.seochat.com has information related to it. So if someone searched for the words SEO Articles, this is helping the site   rel=nofollow http://www.seochat.com to rank for that term. So use this anchor text to your advantage by using keywords in them. Although it is not always possible to use keywords you want, you should not use “click here” as your anchor text.

Remember to optimize your internal pages as well. DO not try to link your main page with all your keywords. For example, if you have a site selling orchids(the flower) and one of your internal page is about flower delivery, is it better for you to optimize your main page for “flower delivery”? No, optimize your main page for the keyword “flower orchids” and your internal page for the words “flower delivery” or “orchid delivery”. This way, at least your site will rank for more terms and get better results for different searches. And not to mention, your onpage optimization would be more effective and easier without too many keywords on one page.

How do I go about doing it?

You should start off with a link building campaign. I will divide them into two major parts.

The first step is where you get links by direct posting.

1. Link exchanges – Link with other websites, preferably with related sites. They are two-way (they link to you and you link back) links. You can email webmasters and request a link exchange with the proper anchor text. Link exchanges can be very effective if done with sites of the same topics or subjects. But beware of who YOU link to. Linking to “bad” sites can get you into trouble with Search Engines and even get you delisted or banned.

2. Article submission – Submit articles you have written to article directories. Usually they have an author’s bio, where you can place your site’s URL in it with the appropriate anchor text. And not only that, writing articles can help improve your reputation in your field of interest as well. You know, your readers may think that you are an “expert” or something.

3. Directory Submission – Submit your site to various directories. There are free and paid directories. It would be advisable to submit your directories to free directories(especially DMOZ) and choose which paid directories you would like to submit to. It’s hard to say which paid directory is best, so use your common sense if you want to do paid inclusion. Please avoid link farms (directories with tons and tons of links in their categories and subcategories) because they don’t work to your advanatage and a lot of them have already been blacklisted or devalued by Search Engines.

4. Forum posting – Signatures allow you to place links and anchor text to your site. If you are posting in a forum related to your site( and with a lot of keywords), you can get better results in your rankings from these postings. However, do note that there are some forums which have the nofollow tag which tells Search Engines not to follow the link. This makes the link useless in SERPs.

5. Blogging – Nowadays everyone likes to leave comments in blogs. You can do it as well. And add your link with the comment. However remember not to spam blog sites, if you add a comment make sure that comment has something to do with the topic. It is also wise to post in blogs which you have some knowledge about.

6. Purchase links – Pay other webmasters to link to you. This method is a bit like a paid directory, just that the site isn’t a directory but could be a informative site or even a blog. You get a link or links with a proper anchor text. There have been reports that some Search Engine devalues such a technique, but it is difficult for Search Engines to know whether that link is a legitimate link or a purchased link. I would also recommend you to buy links directly from other websites than through a “links broker”. You can do this by directly contacting the webmaster and negotiating a price and where your link will be
placed. The placement of your link is important as you don’t want your link to be in very page of the site. For your link to have maximum exposure, it would be best to be in the first page(or the main page) and to reduce the spammy effect, confine to 2 to 3 pages at the most. Avoid site-wide links if your own site has very few pages!

The next step would be link baiting and this step is very highly recommended because these links are natural. However all these link baiting are very much related to onpage optimization(what you do on your site).

1. Although this is considered onpage optimization but it would be appropriate to mention this again – content. The biggest and most effective offpage technique is related to your onpage optimizaton. Good, useful and keyword rich content. This way, you are “baiting” other webmasters to link to you. Some of them even provide you with a good anchor text as well. These are what is termed as “natural links” because others linked to you without you directly asking for a link and is very much encouraged by Search Engines.

2. Software/script – Writing a script or software which a lot of people use is a good way to generate links. If you look around forums or blogs or just normal sites, you can see people recommending this and that software or script. Some scripts like forum scripts have a small link back to their site with the appropriate anchor text included, just imagine, if a lot of users use those scripts, the amount of backlinks will be enormous! Do a Google search “link:www.phpbb.com” and see the amount of backlinks! Phpbb.com is the official site for the free Phpbb forum script. And if you provide the software or the script at no charge, the number of grateful users with the link back will surely help your site. Simply put, it generates links for you.

3. Tutorials/How-to articles – Very related to content. Write useful tutorials like those photoshop tutorials or howtos and this will encourage other web designers or webmasters to link to that. Having useful and unique content is one of the best way to get natural links and traffic. If it is useful to a webmaster’s visitors, he will surely want to tell his visitors about it.

4. Service/Knowledge Sharing – Yes, even if you don’t write good content or tutorials or articles, you can provide a valuable service to others. Like script installation, colour matching service for web designers, technical support for Operating Systems and so on. Something like sharing your knowledge or helping others with their problems can very well get you the links because it is useful to webmasters and useful for their visitors as well. You can see some of the most popular sites are actually sites which help others like those webmasters forum or those technical support groups. You can even be selling some unique product or service to the public and let it generate links for you. Unique, valuable and useful service is just as important as unique, valuable and useful content.

5. Freebies and contests can attract links from other sites as well. Who doesn’t want freebies or who doesn’t want to join a contest to get prizes? Everyone does and because it is such a good promotional tool, you can attract a lot of visitors(and links) from these contests even if it is for a short period.

What all this being said, it is important to note that links from high quality sites are better for rankings than links from low quality sites. A few links from reputable sites is worth more than a lot of links from unknown sites. So if you can, try getting links from these sites instead.

There are a lot of SEO experts who say that offpage optimization is more important than onpage optimization. While that is not completely wrong, it is very difficult (but not impossible) for a good offpage optimization to work without excellent content. And that is ultimately what is on your web pages.

Article Source: Ezine-Article

Off Page Optimization Strategy

By Mohamed Yasil.M

The bulk of your seo, eighty percent, comes down to your off page optimization. Google is all about other people saying ‘He’s about wine supplies.’ It’s important to get this right, but you’ll get greater return by spending your time getting off page optimisation.

Now we’ll talk about off page optimisation. We have a website we are trying to rank for wine supplies. Off page optimisation is all about what people are saying about you. What determines what other people are saying about you is the links and words that other people are using when they link to you. Off page optimisation is all about getting links to your page. You want as many links pointing to your page as possible that contain the keyword that you’re optimising for.

We need to think of strategies to get those inbound links. Some links have more value than other links. For example, a link from Dan Murphy’s.com, a wine seller in Australia, to our website saying wine supplies, is going to be worth more because they’ll have other people sending links to them. They have more power than other smaller websites with much fewer links. There are different ways to get these links. Let’s go through some of these ways.

But before that, we will talk about sending the links. We try to replicate what happens in nature. It is not natural to have every link point to this website saying wine supplies. When we think of Dan Murphy’s, every link pointing to Dan Murphy’s isn’t going to be saying cheap wines online. What is natural is for people to link with a variety of keywords and also to link to the url. That’s where a lot of people go wrong. You want to make sure you send links to this site with your url because that’s how people think naturally when they post links on their blogs. They might link with the fully resolved url (the domain name) and that will be their link.

Anchor text is the text that is used in the link itself. We could have a link on a website saying wine supplies, and it’s selected through the anchor text. Even though it is wine supplies, that will link through to the specific page which might be the full url I was talking about. It’s also important to have links that link the anchor text, being yourdomain name. You would also link some of your secondary keywords. You would probably look at seventy percent as your keyword, so seventy percent as winesupplies. You then want to look at twenty percent to be your url, and then look at ten percent for variations. This forms the basis of your off page optimization strategy.

Article Source:  Ezine-Article

Introduction to SEO

What is SEO (Search Engine Optimization)?

From a search engine perspective, Search Engine Optimization is the process of making web pages easy to find, easy to crawl and easy to categorize.  From a webmaster perspective, Search Engine Optimization involves not only that, but also to make those pages rank high for certain keywords or search terms.

To produce relevant search results, search engines must keep their ranking algorithms secret.  As webmasters and search engine optimization professionals learn to predict search engine behavior, search engines need to evolve and update their algorithms to stay always one step ahead of the most savvy webmasters and SEO’s if they want their results to remain relevant.

How Do I Optimize for the Search Engines?

Search engine optimization begins even before designing your site.  It starts by selecting a very narrow and focused topic for your site, and choosing the right domain name.  You must then select the right keywords for each of your individual pages (keywords, or search terms, are what you expect search engine users will type in the search box to find a page like yours).

After that, site design can begin and, with it, web page optimization.  Web page optimization involves optimizing page copy for your selected keywords and making your web page design friendly to search engines. This usually translates into using your keywords several times in your web page copy, and building a site that offers good navigation, a straightforward architecture, plenty of text, and easy access to all the site’s pages by following links from the most important pages.

The third step, the most difficult and time consuming, involves getting inbound links from quality sites related to your topic, with your keywords in the anchor text. It is virtually impossible to rank high in the most important search engines without a wide array of quality inbound links. Until now, reciprocal linking has been a common way to get inbound links.  Search engines, though, tend to favor one-way links developed naturally (over time) coming from many different sources.

As far as submitting your website to the search engines is concerned, it is not necessary.  Search engines find pages by following links on other pages.   Therefore, by getting a few inbound links (we’ll explain how in our link building section) your site will be found and listed by the search engines.

Off-Page-Optimization

Defined: Off-page optimisation (off-page SEO) is what can be done off the pages of a website to maximise its performance in the search engines for target keywords related to the on-page content and keywords in off-page direct-links.

Types Of Off-Page-Optimization

1.Press Release:

A press release is different from a news article. A news article is a compilation of facts developed by journalists published in the news media, whereas a press release is designed to be sent to journalists in order to encourage them to develop articles on a subject. A press release is generally biased towards the objectives of the author. A press release is written in order to highlight an important event, program, or piece of information by an organization that succinctly describes the who, what, where, when, why and how of the story.

2.Article Submission:

A news article is an article published in a print or Internet news medium such as a newspaper, newsletter, news magazine or news-oriented website that discusses current or recent news of either general interest (i.e. daily newspapers) or on a specific topic (i.e. political or trade news magazines, club newsletters, or technology news websites).

3.Social Book Marking:

Social bookmarking is a method for Internet users to store, organize, search, and manage bookmarks of web pages on the Internet with the help of metadata, typically in the form of tags that collectively and/or collaboratively become a folksonomy. Folksonomy is also called social tagging, “the process by which many users add metadata in the form of keywords to shared content”.

4.Directory Submission:

Directory submission is proven to be a wonderful method for gaining quality one-way incoming back links. Even newbie SEOs ( Search Engine Optimizing people ) knows how incoming links play an important role in today’s search engine optimization procedure. Higher the quality of incoming links better your search engine rankings and internet visibility.

5.Link Exchange:

A link exchange (also known as a banner exchange) is a confederation of websites that operates similarly to a web ring. Webmasters register their web sites with a central organization, that runs the exchange, and in turn receive from the exchange HTML code which they insert into their web pages.

  • One Way Linking

  • Three Way Linking

6.Blog Creation & Promotion

A blog (a contraction of the term “weblog”) is a type of website, usually maintained by an individual with regular entries of commentary, descriptions of events, or other material such as graphics or video. Entries are commonly displayed in reverse-chronological order. “Blog” can also be used as a verb, meaning to maintain or add content to a blog.

7.Forum Discussion

An Internet forum, or message board, is an online discussion site. It is the modern equivalent of a traditional bulletin board, and a technological evolution of the dialup bulletin board system. From a technological standpoint, forums or boards are web applications managing user-generated conten In case of participating in forums with the use of signature we can get the back links easily and will get more traffic for our site.

8.Classifieds:

Classifieds posts are very useful one to get leads for our product as well get traffic for our site.

9.Blog Comments

Blog comments are one of best way to get back links and traffic for our site. Take this as a regular hobby to read blogs and comment on them with your signature.