我使用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
谢谢!
答案 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.