advertise with ongsono.com
 

What Is Dynamic URLs?


Dynamic URLs are those that include a query string, set off by ?, a question mark. This string is used to pass various parameters to a PHP script. Multiple parameters are delimited by & and then appended to the query string. A typical dynamic URL looks like the following:

http://www.example.com/product.php? category_id=1&product_id=2

In this example, product.php is the name of a physical file containing a PHP script on a web server. The highlighted section is the query string. When a web browser makes a request to the PHP script with a particular query string, the script may then present differing content based on the various parameters.

Related SEO Tips

Why Do URLs Matter?
The original rationale was that a URL’s contents are one of the major criteria in search engine ranking.

Static URLs and Dynamic URLs
Which one do you use? Static URLs or Dynamic URLs? which one is better as an URL?

What Is Static URLs?
Static URLs do not include a query string. A URL referencing a script without parameters is still static.