" IndexIgnore *"之间有什么不同?和" IndexIgnore * / *"

时间:2016-02-03 18:27:09

标签: .htaccess

我使用IndexIgnore拒绝文件列表。

____________________________
Relevant Database data
____________________________


products
-id           (primary key)
-name

sizes
-id           (primary key)
-name

product_sizes
-pr           (primary key)
-prodcut_id
-size_id
-amount

我测试了所有这些并且没有任何改变但是......

它们之间有什么不同:D

谢谢!

1 个答案:

答案 0 :(得分:0)

IndexIgnore *

告诉apache隐藏目录列表中的所有文件和目录。

 IndexIgnore */*

上面的行告诉apache隐藏列表中的空间文件或目录。

示例:

 * = All files a dirs.
 */* = Hides the root dir.
 *foo.php* = hides /foo.php

通配符表达式:

* = matches Any chars
*foo = matches a string starting with any chars followed by "foo".
file.* = matches a string starting with "file." followed by any chars.