.htaccess - 允许从一个URL访问目录

时间:2017-07-02 14:45:39

标签: php apache .htaccess

我当前的.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错误时,如何允许访问该目录中的所有文件。

0 个答案:

没有答案