如何调用html目录之外的脚本?

时间:2017-09-08 13:45:51

标签: php url routing directory-structure

这是我的目录结构:

/var
   /www
       myscript.php
       /html
           index.php

目前,index.php为空。我想知道,我应该在其中写什么才能通过 http 请求调用myscript.php脚本?

1 个答案:

答案 0 :(得分:0)

这通常有效:

<?php // index.php : url is /html/index.php
include('../myscript.php);

如果你想做相反的事情:

<?php // myscript.php : url is /myscript.php
include('html/index.php);