我在域上创建了一个新目录(称之为my / domain / dir3)已经有一段时间了。我有其他的,每个都包含一个index.php(dir1 / index.php - dir2 / index.php),如果调用目录URL,则调用每个索引(因此我的/ domain / dir1的URL将调用我的/ domain / dir1.index.php)。
没有尴尬的部分......我完全忘记了我是怎么做到的! ......空白......没什么......没有回忆。请有人赐教。
答案 0 :(得分:1)
如果您使用Apache,它会自动执行此操作。您可以调整httpd.conf中的设置。
答案 1 :(得分:0)
如果它是标准的Apache / PHP安装,那么将index.php文件放在目录中会使它成为目录中的默认页面。
哦,如果你想要一个不同的文件作为索引。在目录中创建一个.htaccess文件,然后输入:
DirectoryIndex index.html index.htm index.php something.php
将something.php替换为您想要的文件和presto;)。你不能有两个索引。
答案 2 :(得分:0)
如果index.php
为seen by Apache作为默认索引文件,则my/domain/dir1/
会看到my/domain/dir1/index.php
。如果你想要更复杂的东西,你需要mod_rewrite。