I need to add "you are here" navigation links to my website. For example:
Home->Automobiles->cars
The only way I can assume is hard coding links in the webpage. I have lots of files if I need to do so. Are there any simple ways or alternatives to overcome this? Your advice is appreciated. Thanks.
NOTE: I am using mod Rewrite in my website as in this example:
RewriteRule ^Automobiles/([^/]*)/([^/]*)/([^/]*)/([^/]*)\.html$ /Automobiles/info.php?make=$1&model=$2&ad_id=$3&name=$4 [L]
The link is something like this:
http://www.abc.com/Automobiles/Nissan/Sunny/1/Car_for_sale.html
I need the navigation to be like:
Home->Automobiles->Car_for_sale