0

我有一个大目录,即项目文件夹,它的地址是

C:\Users\daviti\Desktop\project

在这个文件夹中,我创建了一个简单的网站,其主页是 index html,这个网站被创建为 3 种不同的语言,格鲁吉亚语、俄语和英语,格鲁吉亚语变体直接在项目文件夹中,俄语和英语版本被放入俄语和英文文件夹,肯定在主项目文件夹中,这些文件夹的名称是 eng 和 russ。我很感兴趣我应该在链接上指示什么样的路径,这样我就可以从英文版本移动到另一个版本,这是来自的子代码格鲁吉亚语版本

<a href="eng/index.html"><img src ='english.gif' style="float:right"  width="90" height="90"> </a>
<a href="russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right"  width="90" height="90"/></a>
<a href="index.html"> <img src="georgian.jpg"  style="float:right" width="90" height="90"/></a>

正如您在三个变体中看到的那样,主页的名称是 index.html,只是文件夹不同,这适用于格鲁吉亚版本,但是这个

<a href="eng/index.html"><img src ='english.gif' style="float:right"  width="30" height="30"> </a>
<a href="russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right"  width="30" height="30"/></a>
<a href="index.html"> <img src="georgian.jpg"  style="float:right" width="30" height="30"/></a>

来自英文版的不起作用,例如俄文链接,也来自俄文版

<a href="eng/index.html"><img src ='english.gif' style="float:right"  width="30" height="30"> </a>
<a href="russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right"  width="30" height="30"/></a>
<a href="index.html"> <img src="georgian.jpg"  style="float:right" width="30" height="30"/></a>

请帮我解决这个问题

4

1 回答 1

2

好的,让我理解...您有 3 个“index.html”文件:一个在 C:\Users\daviti\Desktop\project 中,第二个在 C:\Users\daviti\Desktop\project\eng 文件夹中,并且C:\Users\daviti\Desktop\project\russ 文件夹中的第三个?

在这种情况下,请尝试以下解决方案:

在您的格鲁吉亚索引页中写下:

<a href="eng/index.html"><img src ='english.gif' style="float:right"  width="90" height="90"> </a>
<a href="russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right"  width="90" height="90"/></a>
<a href="index.html"> <img src="georgian.jpg"  style="float:right" width="90" height="90"/></a>

在您的英文索引页中写下:

<a href="index.html"><img src ='english.gif' style="float:right"  width="30" height="30"> </a>
<a href="../russ/index.html"><img src ='russian.gif' alt="Russian flag" style="float:right"  width="30" height="30"/></a>
<a href="../index.html"> <img src="georgian.jpg"  style="float:right" width="30" height="30"/></a>

在你的俄语索引页上写下这个:

<a href="../eng/index.html"><img src ='english.gif' style="float:right"  width="30" height="30"> </a>
<a href="index.html"><img src ='russian.gif' alt="Russian flag" style="float:right"  width="30" height="30"/></a>
<a href="../index.html"> <img src="georgian.jpg"  style="float:right" width="30" height="30"/></a>
于 2012-07-21T15:02:30.400 回答