如何创建这种类型的index.php? (网站地图?)

发布于 2024-10-13 04:59:34 字数 420 浏览 4 评论 0原文

我有一个包含大量 .html 文件的文件夹

我的文件夹是 root/searches

现在我在“searches”文件夹中有大量文件作为“root/searches/example.html”。我想为此文件夹创建一个 index.html 作为“root/searches/index.html”

现在在这个index.html 中

我想超链接该文件夹中的所有文件。基本上就像一个站点地图。

注意:此文件夹中每秒都会创建新文件。因此我无法手动执行此操作。

这是我的文件夹: http://www.searchr.us/web-search/

可以有人给我这个脚本或 HTML 吗? 谢谢

I have a folder with tons of .html files

My folder is root/searches

Now i have tons of files in "searches" folder as "root/searches/example.html".I want to create an index.html for this folder as "root/searches/index.html"

Now in this index.html

I want to hyper link all the files in this folder . Basically like a sitemap.

NOTE: New files are created each second in this folder.So i can't do it manually.

This is my folder : http://www.searchr.us/web-search/

Can anyone give me the script or HTML for this ?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

层林尽染 2024-10-20 04:59:34

这就是你所追求的吗?

$dir = '../dir';
$files = scandir($dir);

foreach($files as $file){
    if($file == '.' || $file == '..' || !is_file($dir.'/'.$file)){
        continue;
    }
    print "<a href=\"$file\">$file</a><br />";
}

这将遍历文件夹中的所有文件并打印它们的链接。

Is this what you are after?

$dir = '../dir';
$files = scandir($dir);

foreach($files as $file){
    if($file == '.' || $file == '..' || !is_file($dir.'/'.$file)){
        continue;
    }
    print "<a href=\"$file\">$file</a><br />";
}

This'll run through all of the files in the folder and print a link to them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文