为所有内部 URL 添加后缀

发布于 2024-07-25 19:51:31 字数 308 浏览 6 评论 0原文

我需要将后缀 ?hl=foo 添加到我网站上所有内部 URL 的末尾。

我不确定最好的方法来做到这一点,因为诸如......

<a href="http://www.example.com">My Site</a>
<a target="_blank" href="http://www.example.com">My Site</a>
<a class="a-class" href="http://www.example.com">My Site</a>

I need to add a suffix of ?hl=foo to the end of all internal URLs on my site.

Im not sure of the best way to do this because of complications such as...

<a href="http://www.example.com">My Site</a>
<a target="_blank" href="http://www.example.com">My Site</a>
<a class="a-class" href="http://www.example.com">My Site</a>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾`听者〃 2024-08-01 19:51:31

PHP

只需创建一个在源代码中回显的变量即可。

示例:

<?php $my_get = "?hl=foo"; ?>

<a href="http://mysite.com<?=$my_get?>"> Yadda </a>

使用 Javascript 更改每个 ahref 属性:

  1. 获取所有元素 ( getElementsByTagName('a') )
  2. 对它们运行 foreach 循环
  3. 在 foreach 内,concat现有的 href (http://mysite.com) 和 ?hl=f00

PHP

Just create a variable that you echo in the source.

Example:

<?php $my_get = "?hl=foo"; ?>

<a href="http://mysite.com<?=$my_get?>"> Yadda </a>

Using Javascript to change each a's href attribute:

  1. Obtain all the elements ( getElementsByTagName('a') )
  2. Run a foreach loop on them
  3. Within the foreach, concat the existing href (http://mysite.com) and ?hl=f00
梦醒时光 2024-08-01 19:51:31

尝试 output_add_rewrite_var 函数

<?php
    ob_start();
    output_add_rewrite_var('hl', 'foo');
?>
<a href="/">My Site</a>
<a target="_blank" href="/">My Site</a>
<a class="a-class" href="/">My Site</a>

但我认为它不适用于绝对网址。

Try the output_add_rewrite_var function:

<?php
    ob_start();
    output_add_rewrite_var('hl', 'foo');
?>
<a href="/">My Site</a>
<a target="_blank" href="/">My Site</a>
<a class="a-class" href="/">My Site</a>

But I don’t think it works with absolute URLs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文