我正在使用PrestaShop 1.7建立一个网站。 我有目录结构:
public static void main(String[] args) {
Function<? super BigDecimal, ? extends Number> mapper = dec -> dec
.divide(BigDecimal.TEN)
.doubleValue();
BigDecimal bigD = BigDecimal.ONE;
//works
Optional.of(bigD).map(mapper);
Number number = BigDecimal.ONE;
// the following does not compile,
// despite Number is super type of BigDecimal
Optional.of(number).map(mapper);
}
当我输入root
-admin
-app
-bin
-cache...
或mysite.com/app/
时,会显示
403错误访问被禁止。
但是我想强制所有错误都是404错误而不是403错误。我怎样才能做到这一点?或者是否有其他更好的方法来隐藏我的网站网站目录?
我在每个目录中创建了mysite.com/mail/template.html
文件并放置了.htaccess
。仍显示通用的403 Access Forbidden错误。
答案 0 :(得分:0)
您总是可以使用df1.append(df2)
Out[149]:
high low
year ind
2000 A 9 5
2001 A 5 2
2000 B 9 5
2001 B 5 1000
来阻止您想要阻止的特定目录/文件。
如:
RedirectMatch
这将重定向该目录或所包含的任何子目录/文件的匹配(即/app/foo/bar.php)