我已经安装了 apache2。我有 3 个带有 index.php 的目录,都有相同的 index.php,但只有目录 doc2 有 data.php
-doc1----> index.php
-doc2----> index.php 和 data.php //在这个目录中我有 index.php,其中内容需要“dates.php”
索引.php
<? print "Hello"; require 'data.php'; //when it works show Hello there ?>
数据.php
?> print "hello there" ?>
-doc3----> index.php
我正在寻找将 data.php 从 -doc3 调用到 -doc1 index.php 和 -doc3 index.php 的方法 我听说过一些关于 ScriptAlias 的信息,但我对 apache2 很感兴趣,有人知道如何使用它吗?