php文件路径添加附加文件夹,需要帮助来修复此文件路径错误



我有一个名为pht的文件夹,此文件夹在此文件夹中为:图像文件夹,包括文件夹,文件夹,源文件夹和Tours文件夹。

在我的Tours文件夹中,有一个名为tours.html.php的文件,下面有一个PHP代码:

header.inc.html.php代码如下:

<?php
define('BASE_URL', '/cas225/pht/');
?>

我的问题是,当我尝试去旅行时。html.php创建的文件路径是:http://localhost/cas225/pht/tours/images/portlandhistoricaltoursheader.png

正确的文件路径是:http://localhost/cas225/pht/images/portlandhistoricaltoursheader.png

您可以看到它在Tours文件夹中添加了以某种方式添加,我不知道该如何撤消。

使用 dirname( __FILE__ )代替baseurl。

 <?php include(dirname( __FILE__ ) . '/pht/images/portlandhistoricaltoursheader.png'); ?>

相关内容

  • 没有找到相关文章

最新更新