2

我需要在我的网站上添加“你在这里”导航链接。例如:

Home->Automobiles->cars

我可以假设的唯一方法是网页中的硬编码链接。如果需要,我有很多文件。有没有简单的方法或替代方法来克服这个问题?感谢您的建议。谢谢。

注意:我在我的网站中使用 mod Rewrite,如下例所示:

RewriteRule ^Automobiles/([^/]*)/([^/]*)/([^/]*)/([^/]*)\.html$ /Automobiles/info.php?make=$1&model=$2&ad_id=$3&name=$4 [L]

链接是这样的:

http://www.abc.com/Automobiles/Nissan/Sunny/1/Car_for_sale.html

我需要导航是这样的:

Home->Automobiles->Car_for_sale
4

3 回答 3

2

优秀的教程在这里:

使用 PHP 在您的网站上显示面包屑

于 2012-09-20T06:27:34.920 回答
1

我认为您正在寻找“面包屑”。你有几个例子: 这里这里

于 2012-09-20T06:25:29.303 回答
1

Here is the PHP code that should generate your "Breadcrums". I assumed that you have the value of $_REQUEST['name'] in all of your URL Structure.

// your Breadcrums!
$b = '';

// you need to have this array in order to link each 'alias' to its own 'ID'
$cat['auto'] = 1;
$cat['realestate'] = 2;
// etc.

// home page is always available, right?
// Output: Home
$b .= '<a href="/">Home</a>';

// if we have main category already passed on the URI
// current category
$c_cat = strtok($_SERVER['REQUEST_URI'], '/');

if (!empty($c_cat) AND !empty($cat[$c_cat]))
    // Output: Home -> Auto
    $b .= ' -> <a href="/?id=' . $cat[$c_cat] . '">' . ucfirst($c_cat) . '</a>';

// if we have 'ad name'
if (!empty($_REQUEST['name'])
    // Output: Home -> Auto -> Mustang GT500
    // should not be linked, huh?
    $b .= ' -> ' . $_REQUEST['name'];

// end
echo $b;
于 2012-09-20T08:59:12.220 回答