Showing posts with label asp. Show all posts
Showing posts with label asp. Show all posts

How to Optimize Dynamic Website or Pages?



Definition of Dynamic Pages :



Dynamic pages are the pages generated "on-the-fly" from a database. It is also known as database-driven pages. PHP, Perl, ASP, etc are using to generate dynamic pages.


It is difficult for the search engines to read the dynamic pages. It is generated when user select variable. It is not possible for search engines to select those variables and this reason these pages cannot indexed.


Dynamic URL's contains strings like &, %, ? and due to these characters problems starts for the search crawlers to read the content. But it is possible to index the dynamic pages also.


Here, I am writing the way through which a dynamic page can be readable by the crawlers :



  1. Place links of the dynamic pages on static pages. Further it can be submitted in search engines manually. Most of the dynamic pages will indexed by the search engine by this way.
  2. Coldfusion and other softwares are available which can replace special characters like ?, %, & with alternative text. 
  3. Using help of CGI/Perl, we can convert query string in the url with suitable text. Path_Info and Script_Name are environment variables which contains complete URL including strings in dynamic pages.
  4. Web hosting company also provides module with Apache software that can convert dynamic URL into urls that can be indexed by search engines. The mod_rewrite available for Apache that converts requested url into search engine friendly urls.