我最近将我的 23 个 html 页面的双语网站更改为 23 个 php 页面(该站点是:www.creativemindspcs.org。)通过此更改,我包括了 php 页眉、页脚和导航。
我不知道如何根据我所在的页面更改标题链接。
例子。关于我们的英文页面。在标题中,我有一个链接,上面写着“Espanol”。当您单击该链接时,它应该将您带到关于我们的西班牙语页面,但现在由于 php 标头包含在所有页面中,它只链接到一个页面而不是正确的页面。
如何根据需要访问的页面更改这些链接?谁有好的教程?
HTML 代码:
<header><insert php code here> include('includes/header.php');
包括标题代码:
<!--==============================header=================================-->
<div id="header" class="editable">
<div class="inner" >
<div class="meta-info">
<div class="extra-wrap">
<ul class="social-links">
<li><a href="index.html">English</a></li>
<li><a href="esp-index.html">Español</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
<form id="main-search" action="search.php" >
<input type="text" name="search" style="background-color:#CCCCCC" >
<a class="search-submit" onClick="document.getElementById('main-search').submit()" ></a>
</form>
</div>
<br><br><br><a href="supportus.html" class="button3">Donate</a> <a href="apply.html" class="button4">Apply</a> </div>
<img src="site/images/CMLOGO.GIF" align="top" alt="Guitar Logo"><a href="index.html"></a>
</div>
<div class="clear"></div>
</div>