Change relative link paths for included content in PHP(更改 PHP 中包含内容的相对链接路径)
问题描述
我的服务器根目录中有一个 PHP 文件.. index.php .. include
的 ..DIR/main.php
I have a PHP file at my server root.. index.php .. which include
's .. DIR/main.php
现在 .. DIR/main.php .. 有很多附近文件的相对链接.
Now .. DIR/main.php .. has relative links to many nearby files.
所有相关链接都断开了.
All the relative links are broken.
我可以通过什么方式更改链接的相对 URL 基本路径?
Any way I can change the relative-URL base path for links?
...所以 DIR/main.php 的包含内容将其所有到 friend1.php 的链接都更改为 DIR/friend1.php强>.
... so the included content of DIR/main.php has all its links to friend1.php changed to DIR/friend1.php.
这不是关于包含的,这是关于整体更改 ahref 链接.
This in NOT about include's, this is about CHANGING ahref links en-masse.
推荐答案
html中的base标签适用于相对链接.有关如何使用它的示例,请参阅 w3schools.
The base tag in html works for relative links. See w3schools for an example on how to use it.
这篇关于更改 PHP 中包含内容的相对链接路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:更改 PHP 中包含内容的相对链接路径
基础教程推荐
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01