0

私が作っているこのサイトがあります。同じフォルダーからphpファイルを含めると機能しますが、

<?php include('/ioanblog/appstore/header.php');?> 

動作しないか

<?php include('http://www.domain.co.uk/appstore/header.php');?> 

それも機能していません。

ヘッダーが保持しているのはスタイルシートとPiwikコードだけで、ナビゲーションも保持します。

ここに画像の説明を入力してください

4

4 に答える 4

2

It's hard to say why the include won't work without knowing the folder structure. But you can try it with the absolute path: /home/user/domain/public_html/etc...

于 2013-03-26T19:48:53.230 に答える
1
于 2013-03-26T19:47:56.770 に答える
1

try removing the first slash so include('ioanblog/appstore/header.php');

于 2013-03-26T19:49:02.133 に答える
1

Use <?php include('../../header.php');?>

That's my guess... You don't have an appstore directory anywhere as far as I can tell.

EDIT: Updated with the correct path... Coming from the libreoffice directory.

于 2013-03-26T19:56:48.857 に答える