.htaccess文件中Options All -Indexes
中的“全部”是什么?
它比根文件夹的.htaccess文件中的简单Options -Indexes
行好吗?
谢谢!
答案 0 :(得分:2)
Options All
表示除MultiView之外的所有选项。选项列表是:
var $selects = $('.filters select');
$selects.on('change', function() {
var value = $selects.map(function() {
return this.value;
}).get();
$(".box_wrapper").not("." + value).hide();
$(".box_wrapper." + value).show();
$('html, body').animate({
scrollTop: $("." + value).offset().top},
'slow');
});
$selects.first().trigger("change");
表示除文件夹的MultiViews和Indexes之外的所有选项。
最好只为这个特定文件夹指定所需的选项,即使用www.example.com/cate/123456/guide/index.html
www.example.com/cate/123456/guide/001.html
www.example.com/cate/123456/guide/002.html
www.example.com/cate/123456/guide/003.html
www.example.com/cate/123456/guide/004.html
...and more
,您的服务器可以在此目录上执行CGI脚本(ExecCGI标志,这是您真正想要的吗?)