html 中服务器文件夹中的根文件

Root file from server folder in html

如何使用此方法从根文件夹中抓取或href文件:

../../../pages/development/topic/programing.php

我在使用这种方法时遇到了一些问题,试图 link 从域文件夹(根文件夹),所以使用了这种方法。

<a href="$_SERVER['SERVER_NAME'] ./pages/development/topic/programing.php" class="btn btn-xs btn-success">Read more</a>

但这不起作用,所以我如何link从根文件夹

创建一个文件

您可以直接在目标的href中指定完整的地址,如下所示。

<a href="http://www.example.com/pages/development/topic/programing.php" class="btn btn-xs btn-success">Read more</a>

或者改用这个

<a href='http://".$_SERVER['SERVER_NAME']."/pages/development/topic/programing.php' class="btn btn-xs btn-success">Read more</a>

这也可以正常工作。

您只能提供 Apache 目录中的文件。您需要将文件移动到 Apache 目录或使用 php 脚本结合 include_once:

<?php
  include_once("../../../pages/development/topic/programing.php");
?>

请注意,这是一种不安全的方法,尤其是当您将变量插入字符串时。