我当前的.htaccess文件如下所示:
func myClosure(callback: @escaping (_ greeting: String?) -> Void) {
print("lalalala")
// Do async request stuff here
callback("Hi there!")
}
myClosure() { aGreeting in
guard aGreeting != nil else {
return
}
print(aGreeting!)
}
并允许访问“受限制”中的index.php文件。从/ page /上的iframe访问的人的区域。但是,当我在此刻收到403错误时,如何允许访问该目录中的所有文件。