Forum Moderators: open
Any remarks, observations, tips, etc.?
Thanks!
www.yoursite.com/artist/3/
in your php you would do something like this:
$path_info=explode('/', $PATH_INFO);
$artist=$path_info[1]/* get the info for $artist */
You would need to create a file called 'artist' with no extension and put this in your .htaccess:
<Files artist>
ForceType application/x-httpd-php
</Files>
It's a very neat way of doing it and works well for SE's
Nick
We are primarily a ColdFusion shop. The majority of our clients are using dynamic content from a database. For example, a site pulls a list of products and product IDs from a DB and dynamically creates links to a products.cfm page with the product ID appended to the URL like so.
www.mydomain.com/products/product.cfm?ID=42
What effect will this have on SEP/SEO? And what does this mean for the trend in dynamic web pages using any of the major players in db connectivity technology (cfm,jsp,asp,php,etc.)?