Quote:
|
Real path, now i'm confused? Since all my content is in a database, my pages don't actually exist until a user clicks on a link.
|
When using dynamic links with parameters the url can quickly become long and messy. Using mod_rewrite (or equivalent) you can make the url's look "static like".
For example if you had the following
news.php?year=2006&page=2&newsid=2365
yoou could create the following static like url
news/2006/2/2365.html
and use mod_rewrite to silently rewrite the second url into the first.
More information here