我有一个“domain.com”,其文件夹'user1'& “子”。 现在我有一个子域“m.domain.com”,因为这个子域有根文件夹'domain.com/sub'。 子域的根文件夹中有一个文件,即'm.domain.com/index.php' 我想使用'm.domain.com/index.php'将'user1'的名称更改为'user2'。
如何访问root的父文件夹,即 使用“m.domain.com/index.php”访问“domain.com /".
答案 0 :(得分:0)
根据您的说明,网址m.domain.com/index.php
指向文件domain.com/sub/index.php
。因此,如果要从子域中的index.php访问主域中的文件,则应使用以../
开头的相对路径
示例:在文件domain.com/sub/index.php
(转换为网址m.domain.com/index.php
)中,我想在主域的 user1 文件夹中包含文件library.php
。我用:
include './../user1/library.php'; # the dot at the beginning denotes the current directory
答案 1 :(得分:0)
如果服务器配置允许访问,则可以使用相对路径。
rename(__DIR__ . '/../user1', __DIR__ . '/../user2');