Dear all,
i have dynamic website, data are in database, i have one jsp page, using that the page show the dynamic data from the database,
in this case, how can i give the metatag and do the seo.
thanx for your help,
R. Ramasubramaniam.
Dear all,
i have dynamic website, data are in database, i have one jsp page, using that the page show the dynamic data from the database,
in this case, how can i give the metatag and do the seo.
thanx for your help,
R. Ramasubramaniam.
PPC works for product pages! If you would like to first try with free methods, I suggest you better create some social networking profiles and run campaigns in them. Facebook offers fan pages with which you can post every single product in your updates.
Hi,
Search engines are getting better at listing dynamic web pages. There are a few basic thumb rules to help search engines index your dynamic website.
[B]*[/B] Build a linking campaign. As you get more inbound links search engine spiders will have more reason to trust the quality of your content and they will spider deeper through your site.
[B]*[/B] Use short query strings. Most search engines will do well to list dynamic pages if each query string is kept less than 10 digits.
[B]*[/B] Minimize the number of variables. When possible you want to use three or less different parameters, the fewer the better. If you use long parameter strings and a half dozen parameters it is a fair bet that the site will not get indexed.
[B]*[/B] If you still have problems you can use a CGI script to take the query string out of your dynamic content or try one of the other dynamic page workarounds listed below.
[B]*[/B] Other dynamic workarounds: There are multiple ways to list dynamic web pages in search engines. Common techniques are:
[B]o[/B] Hard coded text links
[B]o[/B] Bare bone pages
[B]o[/B] Coldfusion site maps
[B]o[/B] Apache Mod Rewrite
[B]o[/B] IIS Rewrite Software
[B]o[/B] Paid Inclusion
Last edited by ashtonfarell; 03-10-2010 at 05:34 AM.
Try to redirect the dynamic pages into .htm or html, because search engines Google takes more time to index dynamic than the static in general. We have try this for our website and it will be working good for me.
[URL="http://www.bangkok-accommodation.com/"]
bangkok accommodation[/URL] | [URL="http://www.excitehotels.com/bangkok_sukhumvit_hotels.htm"]sukhumvit hotels bangkok[/URL]
You can use .htaccess redirection for converting your dynamic web pages into a more static page. I've already seen many webites doing this method. The most that I saw are those social bookmarking sites. For example, if the original dynamic URL is: samplebookmarksite.com/story.php?title=Bookmark_Title
This URL would be converted into: samplebookmarksite.com/story/Bookmark_Title
For meta tags concern, here is a technique. The <head> section of the dynamic page should not contain the title tags and the meta tags. I'm not yet very familiar with jsp since we are using php. So to make your dynamic page display different title and meta tags according to what the content is, here are some simple steps:
(1) After the opening <head> tag, include a variable declaration, such as
[PHP]$page=$_GET["pagename"];[/PHP] (in php). This means that if the user lands in your dynamic page, the $page variable will hold what is the parameter in the link such as: [COLOR="Blue"]yourdomain.com/yourdynamicpage.php?pagename=page1[/COLOR]
(2) Include a file, such as metaparser.php which is done in PHP by the line:
[PHP]include("metaparser.php");[/PHP]
(3) Inside the metaparser file, set some arguments, such as:
[PHP]if $page="page1"{
echo "<title>Page 1</title>";
echo "<meta name=\"description\" content=\"page 1 description\" />";
}
if $page="page2"{
echo "<title>Page 2</title>";
echo "<meta name=\"description\" content=\"page 2 description\" />";
}
/* ... and so on. */[/PHP]
Last edited by HikenNoAce; 03-12-2010 at 06:47 AM.