apache2 をインストールしました。index.php には 3 つのディレクトリがあり、すべて同じ index.php がありますが、ディレクトリ doc2 だけに data.php があります。
-doc1----> index.php
-doc2----> index.php と data.php // このディレクトリには index.php があり、コンテンツには "dates.php" が必要です
index.php
<? print "Hello"; require 'data.php'; //when it works show Hello there ?>
data.php
?> print "hello there" ?>
-doc3----> index.php
-doc3 から -doc1 index.php および -doc3 index.php へ data.php を呼び出す方法を探しています ScriptAlias について何か聞いたことがありますが、apache2 の初心者です。