-1

我需要在很多网页上创建链接。但是这些链接会发生很大的变化。所以我想索引它们,然后在我的 html 页面中调用它们。这样,如果我需要更改 url,我可以从一个地方进行,即 csv 文件或文本文件。理想情况下,我想使用 html 或 java ...

所以步骤是:

    1. 在文件中有 url 索引:

变量 1 = http://www.site.com

变量 2 = http://www.site2.com

    1. 在 html 页面中使用变量而不是 url。

    <a href="变量 1" ></a>

这可能不使用php吗?(我不知道如何使用 php ......)

我发现的唯一解决方法是创建一堆 html 重定向页面并使用那些较小的 url。但它非常混乱......

谢谢你的帮助。

昆汀

4

1 回答 1

0

如果您使用的是 PHP,请执行以下操作:

链接.php

$link1 = "http://www.link.com";
$link2 = "http://www.link2.com";

并在您的 HTML 中包含 links.php 页面在您的另一个 php 页面中

include_once "links.php";
global $link1;
global $link2;

<b> this is my page <a href="$link1"> click here</a> and <a href="$link2"> and here </a> to find the actual links </b>
于 2013-02-24T05:47:32.723 回答